Tweak date labels

This commit is contained in:
Justin Ethier 2019-03-04 18:11:33 -05:00
parent be29fbe303
commit e174a827ae
3 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@
<h4>
<a href="/cyclone/{{ post.url }}">{{ post.title }}</a>
</h4>
<span class="date-labels">{{post.date | date: "%b %d %Y" }}</span>
<span class="date-labels">{{post.date | date: "%B %d %Y" }}</span>
<br />
{{ post.excerpt }}
{% endfor %}

View file

@ -7,7 +7,7 @@ ghproj: "http://github.com/justinethier/cyclone/tree/master/"
{% for post in site.posts %}
[{{ post.title }}](./{{ post.url }})
<br />
<span class="date-labels">{{post.date | date: "%b %d %Y" }}</span>
<span class="date-labels">{{post.date | date: "%B %d %Y" }}</span>
<br />
{{ post.excerpt }}
<br />

View file

@ -487,6 +487,6 @@ Custom Styles
*******************************************************************************/
.date-labels {
color: #999;
font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
font-size: 14px;
/*font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;*/
font-size: 18px;
}