fix: add year headers and remove year from individual links
This commit is contained in:
parent
7f9fad3185
commit
8613d6a2c7
|
@ -24,46 +24,54 @@
|
||||||
<h1>Tildes Issue Log</h1>
|
<h1>Tildes Issue Log</h1>
|
||||||
<section id="posts">
|
<section id="posts">
|
||||||
<h1>Posts</h1>
|
<h1>Posts</h1>
|
||||||
|
<h2>2019</h2>
|
||||||
<article class="post">
|
<article class="post">
|
||||||
<h2>
|
<h2>
|
||||||
<a href="posts/december-2018.html">December 2018</a>
|
<a href="posts/january-2019.html">January</a>
|
||||||
|
</h2>
|
||||||
|
</article>
|
||||||
|
<h2>2018</h2>
|
||||||
|
<article class="post">
|
||||||
|
<h2>
|
||||||
|
<a href="posts/december-2018.html">December</a>
|
||||||
</h2>
|
</h2>
|
||||||
</article>
|
</article>
|
||||||
<article class="post">
|
<article class="post">
|
||||||
<h2>
|
<h2>
|
||||||
<a href="posts/november-2018.html">November 2018</a>
|
<a href="posts/november-2018.html">November</a>
|
||||||
</h2>
|
</h2>
|
||||||
</article>
|
</article>
|
||||||
<article class="post">
|
<article class="post">
|
||||||
<h2>
|
<h2>
|
||||||
<a href="posts/october-2018.html">October 2018</a>
|
<a href="posts/october-2018.html">October</a>
|
||||||
</h2>
|
</h2>
|
||||||
</article>
|
</article>
|
||||||
<article class="post">
|
<article class="post">
|
||||||
<h2>
|
<h2>
|
||||||
<a href="posts/september-2018.html">September 2018</a>
|
<a href="posts/september-2018.html">September</a>
|
||||||
</h2>
|
</h2>
|
||||||
</article>
|
</article>
|
||||||
<article class="post">
|
<article class="post">
|
||||||
<h2>
|
<h2>
|
||||||
<a href="posts/august-2018.html">August 2018</a>
|
<a href="posts/august-2018.html">August</a>
|
||||||
</h2>
|
</h2>
|
||||||
</article>
|
</article>
|
||||||
<article class="post">
|
<article class="post">
|
||||||
<h2>
|
<h2>
|
||||||
<a href="posts/july-2018.html">July 2018</a>
|
<a href="posts/july-2018.html">July</a>
|
||||||
</h2>
|
</h2>
|
||||||
</article>
|
</article>
|
||||||
<article class="post">
|
<article class="post">
|
||||||
<h2>
|
<h2>
|
||||||
<a href="posts/june-2018.html">June 2018</a>
|
<a href="posts/june-2018.html">June</a>
|
||||||
</h2>
|
</h2>
|
||||||
</article>
|
</article>
|
||||||
<article class="post">
|
<article class="post">
|
||||||
<h2>
|
<h2>
|
||||||
<a href="posts/may-2018.html">May 2018</a>
|
<a href="posts/may-2018.html">May</a>
|
||||||
</h2>
|
</h2>
|
||||||
</article>
|
</article>
|
||||||
|
<h2>Extra</h2>
|
||||||
<article class="post">
|
<article class="post">
|
||||||
<h2>
|
<h2>
|
||||||
<a href="posts/template.html">Post Template (for devs/writers)</a>
|
<a href="posts/template.html">Post Template (for devs/writers)</a>
|
||||||
|
|
|
@ -9,6 +9,10 @@
|
||||||
padding: 20px 0 20px 20px;
|
padding: 20px 0 20px 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
> h2 {
|
||||||
|
padding: 10px 0 0 20px;
|
||||||
|
}
|
||||||
|
|
||||||
.post {
|
.post {
|
||||||
border-left: 4px solid;
|
border-left: 4px solid;
|
||||||
|
|
||||||
|
|
Reference in New Issue