Footer html with basic styling
This commit is contained in:
@@ -10,6 +10,9 @@ pygmentsStyle = "bw"
|
|||||||
pygmentsCodeFences = true
|
pygmentsCodeFences = true
|
||||||
pygmentsCodeFencesGuessSyntax = true
|
pygmentsCodeFencesGuessSyntax = true
|
||||||
|
|
||||||
|
[params]
|
||||||
|
footer = "The Marauders"
|
||||||
|
|
||||||
[menu]
|
[menu]
|
||||||
[[menu.main]]
|
[[menu.main]]
|
||||||
name = "Home"
|
name = "Home"
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
<footer class="footer">
|
||||||
|
<span>© {{ now.Year }} {{ .Site.Params.Footer}}</span>
|
||||||
|
<br>
|
||||||
|
<span>
|
||||||
|
Made with ❤️ using <a href="https://github.com/526avijitgupta/gokarna">Gokarna</a>
|
||||||
|
</span>
|
||||||
|
</footer>
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="nav-title">
|
<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>
|
||||||
|
|
||||||
<div class="nav-links">
|
<div class="nav-links">
|
||||||
|
|||||||
@@ -10,6 +10,10 @@ pre {
|
|||||||
color: #e2e2e2 !important;
|
color: #e2e2e2 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.footer a {
|
||||||
|
color: #e2e2e2 !important;
|
||||||
|
}
|
||||||
|
|
||||||
/* TODO: Check if this is needed or not */
|
/* TODO: Check if this is needed or not */
|
||||||
/*
|
/*
|
||||||
img,
|
img,
|
||||||
|
|||||||
@@ -90,6 +90,16 @@ html {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* FOOTER */
|
||||||
|
.footer {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer a {
|
||||||
|
font-family: "Ubuntu", sans-serif;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
/** COMMON **/
|
/** COMMON **/
|
||||||
/* TAGS */
|
/* TAGS */
|
||||||
.post-tags {
|
.post-tags {
|
||||||
|
|||||||
Reference in New Issue
Block a user