Merge pull request #16 from 526avijitgupta/footer-and-docs
Footer, docs & clean up
This commit is contained in:
40
README.md
Normal file
40
README.md
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
# Gokarna
|
||||||
|
|
||||||
|
A minimal opinionated theme for Hugo
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
- Minimalistic & fast
|
||||||
|
- Customizable header
|
||||||
|
- Responsive
|
||||||
|
- Light/Dark theme toggle
|
||||||
|
- Native fonts
|
||||||
|
- Syntax highlighting
|
||||||
|
- Math typesetting
|
||||||
|
- SEO Ready
|
||||||
|
|
||||||
|
|
||||||
|
## Inspiration
|
||||||
|
|
||||||
|
The theme is inspired by and accordingly named after [Gokarna](https://en.wikipedia.org/wiki/Gokarna,_Karnataka), a small and peaceful beach town on the west coast on India.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
```sh
|
||||||
|
git submodule add https://github.com/526avijitgupta/gokarna.git themes/gokarna
|
||||||
|
```
|
||||||
|
|
||||||
|
## Customization
|
||||||
|
|
||||||
|
- Navbar
|
||||||
|
- Footer
|
||||||
|
- Inject html
|
||||||
|
|
||||||
|
## LICENSE
|
||||||
|
|
||||||
|
Apache or MIT ?
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
title: "{{ replace .Name "-" " " | title }}"
|
|
||||||
date: {{ .Date }}
|
|
||||||
draft: true
|
|
||||||
---
|
|
||||||
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
baseURL = "http://example.org/"
|
|
||||||
languageCode = "en-us"
|
|
||||||
title = "My New Hugo Site"
|
|
||||||
BIN
docs/gokarna.jpg
Normal file
BIN
docs/gokarna.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.9 MiB |
@@ -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