├── static
├── CNAME
├── version.txt
├── css
│ ├── custom.css
│ ├── fonts.css
│ ├── width.css
│ ├── colors.css
│ ├── main.css
│ ├── tablet.css
│ ├── mobile.css
│ ├── base.css
│ ├── markdown.css
│ └── style.css
├── logo.png
├── eternity.png
├── favicon.ico
├── background.jpeg
├── fonts
│ └── OpenSans
│ │ ├── OpenSans-Bold.ttf
│ │ ├── OpenSans-Italic.ttf
│ │ ├── OpenSans-Regular.ttf
│ │ └── OpenSans-BoldItalic.ttf
└── js
│ └── main.js
├── example
└── eternity.bora.sh
│ ├── static
│ └── CNAME
│ ├── .gitignore
│ ├── content
│ ├── tags
│ │ └── _index.md
│ ├── 404.md
│ ├── _index.md
│ ├── work
│ │ ├── nature
│ │ │ ├── nature-1.md
│ │ │ ├── nature-18.md
│ │ │ ├── nature-10.md
│ │ │ ├── nature-16.md
│ │ │ ├── nature-17.md
│ │ │ ├── nature-19.md
│ │ │ ├── nature-6.md
│ │ │ ├── nature-7.md
│ │ │ ├── nature-8.md
│ │ │ ├── nature-9.md
│ │ │ ├── nature-11.md
│ │ │ ├── nature-12.md
│ │ │ ├── nature-13.md
│ │ │ ├── nature-14.md
│ │ │ ├── nature-15.md
│ │ │ ├── nature-2.md
│ │ │ ├── nature-3.md
│ │ │ └── nature-4.md
│ │ ├── _index.md
│ │ ├── people
│ │ │ ├── people-3.md
│ │ │ ├── people-6.md
│ │ │ ├── people-7.md
│ │ │ ├── people-10.md
│ │ │ ├── people-4.md
│ │ │ ├── people-8.md
│ │ │ ├── people-9.md
│ │ │ └── people-5.md
│ │ ├── space
│ │ │ ├── space-1.md
│ │ │ ├── space-2.md
│ │ │ ├── space-5.md
│ │ │ ├── space-6.md
│ │ │ ├── space-4.md
│ │ │ └── space-3.md
│ │ └── bunny
│ │ │ ├── bunny-1.md
│ │ │ ├── bunny-2.md
│ │ │ ├── bunny-5.md
│ │ │ ├── bunny-6.md
│ │ │ ├── bunny-3.md
│ │ │ └── bunny-4.md
│ └── about.md
│ ├── assets
│ └── images
│ │ ├── about.png
│ │ └── banner.png
│ ├── deploy.sh
│ └── config.yaml
├── doc
├── logo.gif
├── style.md
├── config.md
└── posts.md
├── images
├── tn.png
└── screenshot.png
├── layouts
├── partials
│ ├── helpers
│ │ ├── plausible.html
│ │ ├── hidden-menu.html
│ │ ├── exif.html
│ │ └── get.html
│ ├── style.html
│ ├── footer.html
│ ├── head.html
│ ├── slides
│ │ ├── slides.html
│ │ ├── meta.html
│ │ ├── slider.html
│ │ ├── slide.html
│ │ └── columns.html
│ ├── footer_base.html
│ ├── header.html
│ ├── fonts.html
│ ├── meta.html
│ └── navbar.html
├── _default
│ ├── _markup
│ │ └── render-link.html
│ ├── single.html
│ ├── list.html
│ └── terms.html
├── nil
│ └── single.html
└── index.html
├── theme.toml
├── LICENSE
├── config.example.yaml
└── README.md
/static/CNAME:
--------------------------------------------------------------------------------
1 | eternity.bora.sh
2 |
--------------------------------------------------------------------------------
/static/version.txt:
--------------------------------------------------------------------------------
1 | Eternity v1.5.1
--------------------------------------------------------------------------------
/static/css/custom.css:
--------------------------------------------------------------------------------
1 | /* Custom CSS styles */
2 |
--------------------------------------------------------------------------------
/example/eternity.bora.sh/static/CNAME:
--------------------------------------------------------------------------------
1 | eternity.bora.sh
2 |
--------------------------------------------------------------------------------
/static/css/fonts.css:
--------------------------------------------------------------------------------
1 | /* Moved to /layouts/partials/fonts.html */
2 |
--------------------------------------------------------------------------------
/static/css/width.css:
--------------------------------------------------------------------------------
1 | :root {
2 | --desktop-work-width: 85%;
3 | }
4 |
--------------------------------------------------------------------------------
/doc/logo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/boratanrikulu/eternity/HEAD/doc/logo.gif
--------------------------------------------------------------------------------
/images/tn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/boratanrikulu/eternity/HEAD/images/tn.png
--------------------------------------------------------------------------------
/static/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/boratanrikulu/eternity/HEAD/static/logo.png
--------------------------------------------------------------------------------
/example/eternity.bora.sh/.gitignore:
--------------------------------------------------------------------------------
1 | public/
2 | resources/
3 | .hugo_build.lock
4 | themes/
--------------------------------------------------------------------------------
/example/eternity.bora.sh/content/tags/_index.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: tags
3 | subtitle: eternity
4 | ---
--------------------------------------------------------------------------------
/static/eternity.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/boratanrikulu/eternity/HEAD/static/eternity.png
--------------------------------------------------------------------------------
/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/boratanrikulu/eternity/HEAD/static/favicon.ico
--------------------------------------------------------------------------------
/images/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/boratanrikulu/eternity/HEAD/images/screenshot.png
--------------------------------------------------------------------------------
/static/background.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/boratanrikulu/eternity/HEAD/static/background.jpeg
--------------------------------------------------------------------------------
/example/eternity.bora.sh/content/404.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: 404
3 | subtitle: You lost
4 | url: 404.html
5 | type: nil
6 | ---
7 |
--------------------------------------------------------------------------------
/static/fonts/OpenSans/OpenSans-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/boratanrikulu/eternity/HEAD/static/fonts/OpenSans/OpenSans-Bold.ttf
--------------------------------------------------------------------------------
/static/fonts/OpenSans/OpenSans-Italic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/boratanrikulu/eternity/HEAD/static/fonts/OpenSans/OpenSans-Italic.ttf
--------------------------------------------------------------------------------
/static/fonts/OpenSans/OpenSans-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/boratanrikulu/eternity/HEAD/static/fonts/OpenSans/OpenSans-Regular.ttf
--------------------------------------------------------------------------------
/static/fonts/OpenSans/OpenSans-BoldItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/boratanrikulu/eternity/HEAD/static/fonts/OpenSans/OpenSans-BoldItalic.ttf
--------------------------------------------------------------------------------
/example/eternity.bora.sh/assets/images/about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/boratanrikulu/eternity/HEAD/example/eternity.bora.sh/assets/images/about.png
--------------------------------------------------------------------------------
/example/eternity.bora.sh/assets/images/banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/boratanrikulu/eternity/HEAD/example/eternity.bora.sh/assets/images/banner.png
--------------------------------------------------------------------------------
/example/eternity.bora.sh/content/_index.md:
--------------------------------------------------------------------------------
1 | ---
2 | desc:
3 | - Eternity is a minimalist Hugo theme
4 | - designed for portfolio sites with a fresh feel.
5 | ---
6 |
--------------------------------------------------------------------------------
/layouts/partials/helpers/plausible.html:
--------------------------------------------------------------------------------
1 | {{ with .Site.Params.Plausible }}
2 |
3 | {{ end }}
--------------------------------------------------------------------------------
/layouts/partials/style.html:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/static/css/colors.css:
--------------------------------------------------------------------------------
1 | :root {
2 | --main: #e8607b;
3 | --main-light: #ff8099;
4 | --dark: #000;
5 | --dark-light: #101010;
6 | --white: #eee;
7 | --grey: rgb(169, 169, 169);
8 | }
--------------------------------------------------------------------------------
/layouts/_default/_markup/render-link.html:
--------------------------------------------------------------------------------
1 | {{ .Text | safeHTML }}
--------------------------------------------------------------------------------
/example/eternity.bora.sh/content/work/nature/nature-1.md:
--------------------------------------------------------------------------------
1 | ---
2 | weight: 1
3 | images:
4 | - https://source.unsplash.com/random?nature&11774
5 | title: nature 1
6 | date: 2022-07-23
7 | tags:
8 | - archive # all posts
9 | - nature
10 | ---
11 |
--------------------------------------------------------------------------------
/layouts/_default/single.html:
--------------------------------------------------------------------------------
1 | {{ partial "header.html" . }}
2 |
3 | {{ partial "navbar.html" . }}
4 |
5 |
6 | {{ partial "slides/slide.html" (dict "disableFullheight" true "ctx" .) }}
7 |
8 |
9 | {{ partial "footer.html" . }}
--------------------------------------------------------------------------------
/layouts/partials/footer.html:
--------------------------------------------------------------------------------
1 | {{ if not .IsHome }}
2 |
5 | {{ end }}
6 |