structure and style improvements

This commit is contained in:
Lephenixnoir 2019-06-11 14:25:20 -04:00
parent e56ef645d0
commit a96eff1763
2 changed files with 10 additions and 2 deletions

View File

@ -93,6 +93,10 @@ article a {
text-decoration: none;
color: #cc3434; }
article h2 a {
color: unset;
}
article a:hover {
text-decoration: underline; }
@ -108,3 +112,7 @@ article li {
hr {
width: 100%;
color: #e8e8e8; }
div.separator {
height: 24px;
}

View File

@ -6,11 +6,11 @@ layout: default
{{ page.content | markdownify }}
</article>
<hr />
<div class="separator"></div>
{% for post in site.posts %}
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
<a href="{{ post.url }}"><h2>{{ post.title }}</h2></a>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
{{ post.content }}
</article>
{% endfor %}