Footer html with basic styling

This commit is contained in:
Yash Mehrotra
2021-06-13 13:33:48 +05:30
parent bb4a9adaa2
commit 9a666fff9d
5 changed files with 25 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
<footer class="footer">
<span>&copy; {{ now.Year }} {{ .Site.Params.Footer}}</span>
<br>
<span>
Made with &#10084;&#65039; using <a href="https://github.com/526avijitgupta/gokarna">Gokarna</a>
</span>
</footer>

View File

@@ -8,7 +8,7 @@
</div>
<div class="nav-title">
<a class="nav-brand" href="https://example.com">Title title</a>
<a class="nav-brand" href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
</div>
<div class="nav-links">

View File

@@ -10,6 +10,10 @@ pre {
color: #e2e2e2 !important;
}
.footer a {
color: #e2e2e2 !important;
}
/* TODO: Check if this is needed or not */
/*
img,

View File

@@ -90,6 +90,16 @@ html {
cursor: pointer;
}
/* FOOTER */
.footer {
text-align: center;
}
.footer a {
font-family: "Ubuntu", sans-serif;
color: #000000;
}
/** COMMON **/
/* TAGS */
.post-tags {