summaryrefslogtreecommitdiff
path: root/layouts/_default
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default')
-rw-r--r--layouts/_default/baseof.html9
-rw-r--r--layouts/_default/index.html1
2 files changed, 10 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 1807091..7dab21e 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -46,10 +46,19 @@
{{ $section_class = "star-trek" }}
{{ else if in .Page.Params.category "site-info" }}
{{ $section_class = "site-info" }}
+ {{ else if in .Page.Params.category "bsd" }}
+ {{ $section_class = "bsd" }}
{{ end }}
<body class="{{ $section_class }}">
<header>
<div class="logo">
+ {{ if in .Page.Params.category "bsd" }}
+ {{ $logo := resources.Get "logos/logo-beastie-white.svg" }}
+ <img src="{{$logo.RelPermalink}}" class="beastie">
+ {{ else if in .Page.Params.category "star-trek" }}
+ {{ $logo := resources.Get "logos/logo-startrek-white.svg" }}
+ <img src="{{$logo.RelPermalink}}" class="stbadge">
+ {{ end }}
</div>
<div class="name">
diff --git a/layouts/_default/index.html b/layouts/_default/index.html
index 1143c15..21c98a9 100644
--- a/layouts/_default/index.html
+++ b/layouts/_default/index.html
@@ -13,6 +13,7 @@ Hey! I'm Michał Sapka, a computer programmer living in Kraków, Poland. This we
<h2>Sections</h2>
<nav>
+ <P> &#10022; <a class="sec-link" href="/bsd/home/"><b>BSD site</b>: my writings on Berkley Standard Distribution flabors. OSes I use at the daily basis.</a> </p>
<P> &#10022; <a class="sec-link" href="/star-trek/home/"><b>Star Trek fan site</b>: my little shrine to the greatest american Sci-Fi that has ever graced our screens.</a> </p>
<P> &spades; <a class="sec-link" href="/funnies/"><b>Funnies</b>: A small, curated collection of things I found funny or ammusing.</a> </p>
<p> &#9851; <a class="sec-link" href="/vcs/git/"><b>Version control system</b> : My little code repository. I don't expect to cooporate on any of those, so it's just stagit.</a></p>