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

View file

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

View file

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