all repos — site @ 597f3afea392632186fb960675b62095144e0c03

source for my site, found at icyphox.sh

More QoL changes
Anirudh Oppiliappan x@icyphox.sh
Sun, 24 Jan 2021 11:34:21 +0530
commit

597f3afea392632186fb960675b62095144e0c03

parent

fb7e83b18fbec26a4afc8cd0fa8268017bc7c550

3 files changed, 6 insertions(+), 8 deletions(-)

jump to
M config.yamlconfig.yaml

@@ -1,6 +1,5 @@

title: icyphox's blog header: | - <div class="topnav"> <a href=/> <img class="logo" src="/static/white.svg" alt="icyphox's avatar"/> </a>

@@ -11,7 +10,6 @@ <a href="/uses">uses</a>

&middot; <a href="/friends">friends</a> </nav> - </div> siteurl: "https://icyphox.sh" rssprefixurl: "https://icyphox.sh/blog/"
M static/style.cssstatic/style.css

@@ -51,10 +51,6 @@ text-decoration: underline;

outline: 0; } -.navbar { - margin: 2px 0; -} - .sidebar-link { font-size: 15px; color: var(--darker);

@@ -236,8 +232,12 @@ padding-left: 0.3em;

} nav { - padding-top: 14px; float: right; + transform: translateY(60%); +} + +header { + margin-bottom: 10px; } .muted {
M templates/index.htmltemplates/index.html

@@ -38,10 +38,10 @@ <table>

{{ $datefmt := .Cfg.DateFmt }} {{ range $_, $post := .Posts }} <tr> - <td align="left" class="index-date">{{ $post.Fm.Date.Format $datefmt }}</td> <td align="left" class="index-post"> <a href="/blog/{{ $post.Fm.URL }}">{{ $post.Fm.Title }}</a> </td> + <td align="right" class="index-date">{{ $post.Fm.Date.Format $datefmt }}</td> </tr> {{ end }} </table>