some minor updates
This commit is contained in:
@ -51,6 +51,7 @@
|
||||
);
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
</head>
|
||||
<body>
|
||||
{% include topnav.html %}
|
||||
@ -71,6 +72,12 @@
|
||||
</div>
|
||||
<!-- /.container -->
|
||||
</div>
|
||||
<script>
|
||||
jQuery(function ($) {
|
||||
$('.post-content').annotator()
|
||||
.annotator('setupPlugins', {tokenUrl: 'http://example.com/api/token'})
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
{% if site.google_analytics %}
|
||||
{% include google_analytics.html %}
|
||||
|
@ -934,7 +934,7 @@ a[href^="http://"]:after, a[href^="https://"]:after {
|
||||
}
|
||||
|
||||
/* Strip the outbound icon when this class is present */
|
||||
a[href^="http://own-domain.com"]:after,
|
||||
a[href].noCrossRef::after,
|
||||
a.no_icon:after {
|
||||
content:"" !important;
|
||||
padding-left: 0;
|
||||
@ -1000,15 +1000,6 @@ span.label.label-primary {
|
||||
}
|
||||
.col-lg-12 .nav li a {background-color: white}
|
||||
|
||||
li.sidebarTitle {
|
||||
margin-top:40px;
|
||||
font-weight:normal;
|
||||
font-size:130%;
|
||||
color: #ED1951;
|
||||
margin-bottom:10px;
|
||||
margin-left: 5px;
|
||||
|
||||
}
|
||||
|
||||
.nav li.active > a.subfoldersTitle {
|
||||
background-color: whitesmoke;
|
||||
@ -1027,3 +1018,20 @@ code + a > code {
|
||||
table th code {
|
||||
color: white;
|
||||
}
|
||||
|
||||
ol li ul li ol li {
|
||||
list-style: decimal;
|
||||
}
|
||||
|
||||
ol li ul li ol li ul li{
|
||||
list-style: disc;
|
||||
}
|
||||
|
||||
.post-content table th {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
table thead th code.highlighter-rouge {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
|
@ -91,3 +91,13 @@ body.print h4 {color: #679DCE !important; font-size:14px; font-style: italic !im
|
||||
div.sidebarTitle {
|
||||
color: #015CAE;
|
||||
}
|
||||
|
||||
li.sidebarTitle {
|
||||
margin-top:40px;
|
||||
font-weight:normal;
|
||||
font-size:130%;
|
||||
color: #ED1951;
|
||||
margin-bottom:10px;
|
||||
margin-left: 5px;
|
||||
|
||||
}
|
@ -87,3 +87,13 @@ body.print h4 {color: #679DCE !important; font-size:14px; font-style: italic;}
|
||||
div.sidebarTitle {
|
||||
color: #E50E51;
|
||||
}
|
||||
|
||||
li.sidebarTitle {
|
||||
margin-top:40px;
|
||||
font-weight:normal;
|
||||
font-size:130%;
|
||||
color: #ED1951;
|
||||
margin-bottom:10px;
|
||||
margin-left: 5px;
|
||||
|
||||
}
|
@ -17,4 +17,3 @@ I think this theme does pretty much everything that you can do with something li
|
||||
With a completely open architecture and code base, you can modify the code to make it do exactly what you want, without having to jump through all kinds of confusing or proprietary code.
|
||||
|
||||
If there's a feature you need but it isn't available here, let me know and I might add it. Alternatively, if you fork the theme, I would love to see your modifications and enhancements.
|
||||
|
||||
|
@ -38,10 +38,10 @@ To remove the password prompts when connecting to servers via SSH:
|
||||
Generating public/private rsa key pair.
|
||||
Enter passphrase (empty for no passphrase):
|
||||
Enter same passphrase again:
|
||||
Your identification has been saved in /Users/tjohnson/.ssh/id_rsa.
|
||||
Your public key has been saved in /Users/tjohnson/.ssh/id_rsa.pub.
|
||||
Your identification has been saved in /Users/yourname/.ssh/id_rsa.
|
||||
Your public key has been saved in /Users/yourname/.ssh/id_rsa.pub.
|
||||
The key fingerprint is:
|
||||
9a:8f:b5:495:39:78:t5:dc:19:d6:29:66:02:e8:02:a0 tjohnson@tjohnson-mbpr13.local
|
||||
9a:8f:b5:495:39:78:t5:dc:19:d6:29:66:02:e8:02:a0 yourname@yourname-mbpr99.local
|
||||
```
|
||||
|
||||
The key's randomart image is:
|
||||
|
@ -25,7 +25,7 @@ toc: false
|
||||
<ul class="past">
|
||||
{% endif %}
|
||||
{% endunless %}
|
||||
<li><time>{{ post.date | date:"%d %b" }}</time><a href="{{ post.url }}">{{ post.title }}</a></li>
|
||||
<li><time>{{ post.date | date:"%d %b" }}</time><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</section>
|
||||
|
Reference in New Issue
Block a user