Update posts, and styles to include wtfpl notice
This commit is contained in:
parent
52a5de0357
commit
7b572bf508
3 changed files with 26 additions and 5 deletions
|
@ -15,7 +15,8 @@
|
|||
<p>
|
||||
This site is a small slice of internet real-estate that I use for
|
||||
occasional writing. Nothing I say is visionary or profound. I will
|
||||
tend to focus on technology, gaming, and philosophy.
|
||||
tend to focus on technology, gaming, and philosophy. All opinions my
|
||||
own.
|
||||
</p>
|
||||
<h5>The Vagabond</h5>
|
||||
<p>
|
||||
|
|
|
@ -31,10 +31,18 @@
|
|||
<main>
|
||||
<article>
|
||||
{{ content }}
|
||||
<h4>[ {{ page.author }} ][ {{ page.pub }} ][
|
||||
{% for topic in page.topics %}
|
||||
<a href="/topics/{{topic}}">{{topic}}</a>
|
||||
{% endfor %}]</h4>
|
||||
<h4 class="author_info">
|
||||
<span>[ {{ page.author }} ]</span>
|
||||
<span>[ {{ page.pub }} ]</span>
|
||||
<span>[
|
||||
{% for topic in page.topics %}
|
||||
<a href="/topics/{{topic}}">{{topic}}</a>
|
||||
{% endfor %}]
|
||||
</span>
|
||||
<span>[
|
||||
<a href="http://www.wtfpl.net/about/">wtfpl</a> ]
|
||||
</span>
|
||||
</h4>
|
||||
</article>
|
||||
</main>
|
||||
{% include cor_menu.html %}
|
||||
|
|
|
@ -108,6 +108,12 @@ h3 + table {
|
|||
text-align: right;
|
||||
}
|
||||
|
||||
h4.author_info {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
flex-flow: column;
|
||||
}
|
||||
|
||||
@supports (display: grid) {
|
||||
|
||||
.cor_page {
|
||||
|
@ -177,5 +183,11 @@ h3 + table {
|
|||
text-align: right;
|
||||
color: grey;
|
||||
}
|
||||
|
||||
h4.author_info {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
flex-flow: row wrap;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue