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>
|
<p>
|
||||||
This site is a small slice of internet real-estate that I use for
|
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
|
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>
|
</p>
|
||||||
<h5>The Vagabond</h5>
|
<h5>The Vagabond</h5>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -31,10 +31,18 @@
|
||||||
<main>
|
<main>
|
||||||
<article>
|
<article>
|
||||||
{{ content }}
|
{{ content }}
|
||||||
<h4>[ {{ page.author }} ][ {{ page.pub }} ][
|
<h4 class="author_info">
|
||||||
|
<span>[ {{ page.author }} ]</span>
|
||||||
|
<span>[ {{ page.pub }} ]</span>
|
||||||
|
<span>[
|
||||||
{% for topic in page.topics %}
|
{% for topic in page.topics %}
|
||||||
<a href="/topics/{{topic}}">{{topic}}</a>
|
<a href="/topics/{{topic}}">{{topic}}</a>
|
||||||
{% endfor %}]</h4>
|
{% endfor %}]
|
||||||
|
</span>
|
||||||
|
<span>[
|
||||||
|
<a href="http://www.wtfpl.net/about/">wtfpl</a> ]
|
||||||
|
</span>
|
||||||
|
</h4>
|
||||||
</article>
|
</article>
|
||||||
</main>
|
</main>
|
||||||
{% include cor_menu.html %}
|
{% include cor_menu.html %}
|
||||||
|
|
|
@ -108,6 +108,12 @@ h3 + table {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h4.author_info {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
flex-flow: column;
|
||||||
|
}
|
||||||
|
|
||||||
@supports (display: grid) {
|
@supports (display: grid) {
|
||||||
|
|
||||||
.cor_page {
|
.cor_page {
|
||||||
|
@ -177,5 +183,11 @@ h3 + table {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
color: grey;
|
color: grey;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h4.author_info {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
flex-flow: row wrap;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue