From 8db88e8acf4392d08dc83f8ef669aa28e9c7b3ca Mon Sep 17 00:00:00 2001
From: lourenco <>
Date: Mon, 21 Jul 2025 15:01:37 +0200
Subject: [PATCH] First commit for the website
---
archetypes/default.md | 5 +
content/_index.md | 6 +
content/blog/_index.md | 5 +
content/blog/hello-world.md | 15 +
hugo.toml | 57 +
layouts/index.html | 79 +
themes/terminal/.babelrc | 7 +
themes/terminal/.editorconfig | 9 +
themes/terminal/.eslintrc.yml | 60 +
themes/terminal/.gitignore | 93 +
themes/terminal/.husky/.gitignore | 1 +
themes/terminal/.husky/pre-push | 4 +
themes/terminal/.prettierrc | 12 +
themes/terminal/.stylelintrc.json | 12 +
themes/terminal/COMMUNITY-FEATURES.md | 34 +
themes/terminal/LICENSE.md | 20 +
themes/terminal/README.md | 319 ++
themes/terminal/archetypes/posts.md | 14 +
themes/terminal/assets/css/buttons.css | 84 +
themes/terminal/assets/css/code.css | 127 +
themes/terminal/assets/css/fonts.css | 18 +
themes/terminal/assets/css/footer.css | 44 +
themes/terminal/assets/css/gist.css | 4 +
themes/terminal/assets/css/header.css | 46 +
themes/terminal/assets/css/main.css | 520 ++
themes/terminal/assets/css/menu.css | 148 +
themes/terminal/assets/css/pagination.css | 86 +
themes/terminal/assets/css/post.css | 141 +
themes/terminal/assets/css/syntax.css | 97 +
themes/terminal/assets/css/terminal.css | 2 +
themes/terminal/assets/css/terms.css | 18 +
themes/terminal/assets/js/code.js | 32 +
themes/terminal/assets/js/menu.js | 44 +
themes/terminal/babel.config.js | 18 +
themes/terminal/config.toml | 4 +
themes/terminal/exampleSite/config.toml | 37 +
themes/terminal/exampleSite/content/about.md | 21 +
.../exampleSite/content/posts/hello.md | 18 +
.../terminal/exampleSite/content/showcase.md | 192 +
.../terminal/exampleSite/static/img/hello.jpg | Bin 0 -> 77622 bytes
themes/terminal/go.mod | 3 +
themes/terminal/images/screenshot.png | Bin 0 -> 85645 bytes
themes/terminal/images/terminal-css.png | Bin 0 -> 212891 bytes
themes/terminal/images/terminal-theme-old.png | Bin 0 -> 448158 bytes
themes/terminal/images/terminal-theme.png | Bin 0 -> 50457 bytes
themes/terminal/images/tn.png | Bin 0 -> 51731 bytes
themes/terminal/layouts/404.html | 10 +
themes/terminal/layouts/_default/baseof.html | 27 +
themes/terminal/layouts/_default/index.html | 66 +
themes/terminal/layouts/_default/list.html | 56 +
themes/terminal/layouts/_default/single.html | 57 +
themes/terminal/layouts/_default/term.html | 57 +
themes/terminal/layouts/_default/terms.html | 22 +
.../terminal/layouts/partials/comments.html | 8 +
themes/terminal/layouts/partials/cover.html | 24 +
.../layouts/partials/extended_footer.html | 4 +
.../layouts/partials/extended_head.html | 4 +
themes/terminal/layouts/partials/footer.html | 23 +
themes/terminal/layouts/partials/head.html | 79 +
themes/terminal/layouts/partials/header.html | 16 +
.../layouts/partials/language-menu.html | 10 +
themes/terminal/layouts/partials/logo.html | 5 +
themes/terminal/layouts/partials/menu.html | 33 +
.../layouts/partials/mobile-menu.html | 20 +
.../terminal/layouts/partials/pagination.html | 17 +
.../terminal/layouts/partials/post-date.html | 10 +
.../layouts/partials/post-lastmod.html | 10 +
.../layouts/partials/posts_pagination.html | 23 +
themes/terminal/layouts/shortcodes/code.html | 16 +
themes/terminal/layouts/shortcodes/image.html | 3 +
themes/terminal/package-lock.json | 4992 +++++++++++++++++
themes/terminal/package.hugo.json | 39 +
themes/terminal/package.json | 43 +
themes/terminal/static/apple-touch-icon.png | Bin 0 -> 190 bytes
themes/terminal/static/favicon.png | Bin 0 -> 190 bytes
.../static/fonts/FiraCode-Latin.woff2 | Bin 0 -> 35496 bytes
.../static/fonts/FiraCode-LatinExt.woff2 | Bin 0 -> 12696 bytes
themes/terminal/static/og-image.png | Bin 0 -> 4595 bytes
themes/terminal/theme.toml | 13 +
themes/terminal/yarn.lock | 2707 +++++++++
80 files changed, 10850 insertions(+)
create mode 100644 archetypes/default.md
create mode 100644 content/_index.md
create mode 100644 content/blog/_index.md
create mode 100644 content/blog/hello-world.md
create mode 100644 hugo.toml
create mode 100644 layouts/index.html
create mode 100644 themes/terminal/.babelrc
create mode 100644 themes/terminal/.editorconfig
create mode 100644 themes/terminal/.eslintrc.yml
create mode 100644 themes/terminal/.gitignore
create mode 100644 themes/terminal/.husky/.gitignore
create mode 100755 themes/terminal/.husky/pre-push
create mode 100644 themes/terminal/.prettierrc
create mode 100644 themes/terminal/.stylelintrc.json
create mode 100644 themes/terminal/COMMUNITY-FEATURES.md
create mode 100644 themes/terminal/LICENSE.md
create mode 100644 themes/terminal/README.md
create mode 100644 themes/terminal/archetypes/posts.md
create mode 100644 themes/terminal/assets/css/buttons.css
create mode 100644 themes/terminal/assets/css/code.css
create mode 100644 themes/terminal/assets/css/fonts.css
create mode 100644 themes/terminal/assets/css/footer.css
create mode 100644 themes/terminal/assets/css/gist.css
create mode 100644 themes/terminal/assets/css/header.css
create mode 100644 themes/terminal/assets/css/main.css
create mode 100644 themes/terminal/assets/css/menu.css
create mode 100644 themes/terminal/assets/css/pagination.css
create mode 100644 themes/terminal/assets/css/post.css
create mode 100644 themes/terminal/assets/css/syntax.css
create mode 100644 themes/terminal/assets/css/terminal.css
create mode 100644 themes/terminal/assets/css/terms.css
create mode 100644 themes/terminal/assets/js/code.js
create mode 100644 themes/terminal/assets/js/menu.js
create mode 100644 themes/terminal/babel.config.js
create mode 100644 themes/terminal/config.toml
create mode 100644 themes/terminal/exampleSite/config.toml
create mode 100644 themes/terminal/exampleSite/content/about.md
create mode 100644 themes/terminal/exampleSite/content/posts/hello.md
create mode 100644 themes/terminal/exampleSite/content/showcase.md
create mode 100644 themes/terminal/exampleSite/static/img/hello.jpg
create mode 100644 themes/terminal/go.mod
create mode 100644 themes/terminal/images/screenshot.png
create mode 100644 themes/terminal/images/terminal-css.png
create mode 100644 themes/terminal/images/terminal-theme-old.png
create mode 100644 themes/terminal/images/terminal-theme.png
create mode 100644 themes/terminal/images/tn.png
create mode 100644 themes/terminal/layouts/404.html
create mode 100644 themes/terminal/layouts/_default/baseof.html
create mode 100644 themes/terminal/layouts/_default/index.html
create mode 100644 themes/terminal/layouts/_default/list.html
create mode 100644 themes/terminal/layouts/_default/single.html
create mode 100644 themes/terminal/layouts/_default/term.html
create mode 100644 themes/terminal/layouts/_default/terms.html
create mode 100644 themes/terminal/layouts/partials/comments.html
create mode 100644 themes/terminal/layouts/partials/cover.html
create mode 100644 themes/terminal/layouts/partials/extended_footer.html
create mode 100644 themes/terminal/layouts/partials/extended_head.html
create mode 100644 themes/terminal/layouts/partials/footer.html
create mode 100644 themes/terminal/layouts/partials/head.html
create mode 100644 themes/terminal/layouts/partials/header.html
create mode 100644 themes/terminal/layouts/partials/language-menu.html
create mode 100644 themes/terminal/layouts/partials/logo.html
create mode 100644 themes/terminal/layouts/partials/menu.html
create mode 100644 themes/terminal/layouts/partials/mobile-menu.html
create mode 100644 themes/terminal/layouts/partials/pagination.html
create mode 100644 themes/terminal/layouts/partials/post-date.html
create mode 100644 themes/terminal/layouts/partials/post-lastmod.html
create mode 100644 themes/terminal/layouts/partials/posts_pagination.html
create mode 100644 themes/terminal/layouts/shortcodes/code.html
create mode 100644 themes/terminal/layouts/shortcodes/image.html
create mode 100644 themes/terminal/package-lock.json
create mode 100644 themes/terminal/package.hugo.json
create mode 100644 themes/terminal/package.json
create mode 100644 themes/terminal/static/apple-touch-icon.png
create mode 100644 themes/terminal/static/favicon.png
create mode 100644 themes/terminal/static/fonts/FiraCode-Latin.woff2
create mode 100644 themes/terminal/static/fonts/FiraCode-LatinExt.woff2
create mode 100644 themes/terminal/static/og-image.png
create mode 100644 themes/terminal/theme.toml
create mode 100644 themes/terminal/yarn.lock
diff --git a/archetypes/default.md b/archetypes/default.md
new file mode 100644
index 0000000..25b6752
--- /dev/null
+++ b/archetypes/default.md
@@ -0,0 +1,5 @@
++++
+date = '{{ .Date }}'
+draft = true
+title = '{{ replace .File.ContentBaseName "-" " " | title }}'
++++
diff --git a/content/_index.md b/content/_index.md
new file mode 100644
index 0000000..d466fc9
--- /dev/null
+++ b/content/_index.md
@@ -0,0 +1,6 @@
+---
+title: "Welcome to Excipio"
+---
+## What are we?
+
+We are what we are
diff --git a/content/blog/_index.md b/content/blog/_index.md
new file mode 100644
index 0000000..a45a0bb
--- /dev/null
+++ b/content/blog/_index.md
@@ -0,0 +1,5 @@
+---
+title: "Blog"
+---
+
+Welcome to the blog section where you'll find all posts and articles.
\ No newline at end of file
diff --git a/content/blog/hello-world.md b/content/blog/hello-world.md
new file mode 100644
index 0000000..d1b441e
--- /dev/null
+++ b/content/blog/hello-world.md
@@ -0,0 +1,15 @@
+---
+title: "Hello World"
+date: 2025-07-21T10:00:00Z
+draft: false
+---
+
+Welcome to Excipio! This is a simple hello world post to get started.
+
+This post demonstrates the Terminal theme's clean, retro styling with:
+
+- Simple markdown rendering
+- Code syntax highlighting
+- Responsive design
+
+Feel free to explore and add more content!
\ No newline at end of file
diff --git a/hugo.toml b/hugo.toml
new file mode 100644
index 0000000..e7bea62
--- /dev/null
+++ b/hugo.toml
@@ -0,0 +1,57 @@
+baseURL = 'https://example.org/'
+languageCode = 'en-us'
+title = 'Excipio'
+theme = 'terminal'
+
+[pagination]
+pagerSize = 5
+
+[markup.highlight]
+noClasses = false
+
+[params]
+contentTypeName = "blog"
+showMenuItems = 2
+showLanguageSelector = false
+fullWidthTheme = false
+centerTheme = true
+autoCover = true
+showLastUpdated = false
+
+[params.twitter]
+creator = ""
+site = ""
+
+[languages]
+[languages.en]
+languageName = "English"
+title = "Excipio"
+
+[languages.en.params]
+subtitle = "A simple, retro theme for Hugo"
+owner = ""
+keywords = ""
+copyright = ""
+menuMore = "Show more"
+readMore = "Read more"
+readOtherPosts = "Read other posts"
+newerPosts = "Newer posts"
+olderPosts = "Older posts"
+missingContentMessage = "Page not found..."
+missingBackButtonLabel = "Back to home page"
+minuteReadingTime = "min read"
+words = "words"
+
+[languages.en.params.logo]
+logoText = "Excipio"
+logoHomeLink = "/"
+
+[languages.en.menu]
+[[languages.en.menu.main]]
+identifier = "blog"
+name = "Blog"
+url = "/blog"
+[[languages.en.menu.main]]
+identifier = "about"
+name = "About"
+url = "/about"
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..ecd51e7
--- /dev/null
+++ b/layouts/index.html
@@ -0,0 +1,79 @@
+{{ define "main" }}
+
+
+
Welcome to {{ .Site.Title }}
+ {{ .Content }}
+
+
+
+
+{{ end }}
diff --git a/themes/terminal/.babelrc b/themes/terminal/.babelrc
new file mode 100644
index 0000000..7f80ae6
--- /dev/null
+++ b/themes/terminal/.babelrc
@@ -0,0 +1,7 @@
+{
+ "presets": [
+ ["@babel/preset-env", {
+ "targets": "last 2 versions, >1%, not dead"
+ }],
+ ],
+}
diff --git a/themes/terminal/.editorconfig b/themes/terminal/.editorconfig
new file mode 100644
index 0000000..a540917
--- /dev/null
+++ b/themes/terminal/.editorconfig
@@ -0,0 +1,9 @@
+root = true
+
+[*]
+end_of_line = lf
+insert_final_newline = true
+charset = utf-8
+
+indent_size = 2
+indent_style = space
diff --git a/themes/terminal/.eslintrc.yml b/themes/terminal/.eslintrc.yml
new file mode 100644
index 0000000..7fdea84
--- /dev/null
+++ b/themes/terminal/.eslintrc.yml
@@ -0,0 +1,60 @@
+---
+
+env:
+ es6: true
+
+extends:
+ # https://github.com/airbnb/javascript
+ - airbnb
+ - eslint:recommended
+ - prettier
+
+parser: babel-eslint
+
+rules:
+ # best practices
+ arrow-parens:
+ - 2
+ - as-needed
+ semi:
+ - 2
+ - always
+ class-methods-use-this: 0
+ comma-dangle:
+ - 2
+ - always-multiline
+ no-console:
+ - 2
+ no-unused-expressions: 0
+ no-param-reassign:
+ - 2
+ - props: false
+ no-useless-escape: 0
+ func-names: 0
+ quotes:
+ - 2
+ - double
+ - allowTemplateLiterals: true
+ no-underscore-dangle: 0
+ object-curly-newline: 0
+ function-paren-newline: 0
+ operator-linebreak:
+ - 2
+ - after
+ no-unused-vars:
+ - 2
+ - argsIgnorePattern: "^_"
+ # jsx a11y
+ jsx-a11y/no-static-element-interactions: 0
+ jsx-a11y/anchor-is-valid:
+ - 2
+ - specialLink:
+ - to
+
+globals:
+ document: true
+ requestAnimationFrame: true
+ window: true
+ self: true
+ fetch: true
+ Headers: true
diff --git a/themes/terminal/.gitignore b/themes/terminal/.gitignore
new file mode 100644
index 0000000..ed97239
--- /dev/null
+++ b/themes/terminal/.gitignore
@@ -0,0 +1,93 @@
+# Created by https://www.gitignore.io/api/node
+# Edit at https://www.gitignore.io/?templates=node
+
+### Node ###
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+lerna-debug.log*
+
+# Diagnostic reports (https://nodejs.org/api/report.html)
+report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
+
+# Runtime data
+pids
+*.pid
+*.seed
+*.pid.lock
+
+# Directory for instrumented libs generated by jscoverage/JSCover
+lib-cov
+
+# Coverage directory used by tools like istanbul
+coverage
+
+# nyc test coverage
+.nyc_output
+
+# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
+.grunt
+
+# Bower dependency directory (https://bower.io/)
+bower_components
+
+# node-waf configuration
+.lock-wscript
+
+# Compiled binary addons (https://nodejs.org/api/addons.html)
+build/Release
+
+# Dependency directories
+node_modules/
+jspm_packages/
+
+# TypeScript v1 declaration files
+typings/
+
+# Optional npm cache directory
+.npm
+
+# Optional eslint cache
+.eslintcache
+
+# Optional REPL history
+.node_repl_history
+
+# Output of 'npm pack'
+*.tgz
+
+# Yarn Integrity file
+.yarn-integrity
+
+# dotenv environment variables file
+.env
+.env.test
+
+# parcel-bundler cache (https://parceljs.org/)
+.cache
+
+# next.js build output
+.next
+
+# nuxt.js build output
+.nuxt
+
+# vuepress build output
+.vuepress/dist
+
+# Serverless directories
+.serverless/
+
+# FuseBox cache
+.fusebox/
+
+# DynamoDB Local files
+.dynamodb/
+
+# End of https://www.gitignore.io/api/node
+public
+resources
+.hugo_build.lock
diff --git a/themes/terminal/.husky/.gitignore b/themes/terminal/.husky/.gitignore
new file mode 100644
index 0000000..31354ec
--- /dev/null
+++ b/themes/terminal/.husky/.gitignore
@@ -0,0 +1 @@
+_
diff --git a/themes/terminal/.husky/pre-push b/themes/terminal/.husky/pre-push
new file mode 100755
index 0000000..f1fd679
--- /dev/null
+++ b/themes/terminal/.husky/pre-push
@@ -0,0 +1,4 @@
+#!/bin/sh
+. "$(dirname "$0")/_/husky.sh"
+
+yarn build && git add . && git commit --amend --no-edit
diff --git a/themes/terminal/.prettierrc b/themes/terminal/.prettierrc
new file mode 100644
index 0000000..e1cf070
--- /dev/null
+++ b/themes/terminal/.prettierrc
@@ -0,0 +1,12 @@
+{
+ "parser": "babel",
+ "printWidth": 100,
+ "trailingComma": "all",
+ "arrowParens": "avoid",
+ "overrides": [{
+ "files": ".html",
+ "options": {
+ "parser": "html"
+ }
+ }]
+}
diff --git a/themes/terminal/.stylelintrc.json b/themes/terminal/.stylelintrc.json
new file mode 100644
index 0000000..300e374
--- /dev/null
+++ b/themes/terminal/.stylelintrc.json
@@ -0,0 +1,12 @@
+{
+ "extends": [
+ "stylelint-config-standard-scss",
+ "stylelint-config-prettier-scss"
+ ],
+ "rules": {
+ "max-empty-lines": 1,
+ "color-function-notation": null,
+ "no-descending-specificity": null,
+ "selector-class-pattern": null
+ }
+}
diff --git a/themes/terminal/COMMUNITY-FEATURES.md b/themes/terminal/COMMUNITY-FEATURES.md
new file mode 100644
index 0000000..f20b670
--- /dev/null
+++ b/themes/terminal/COMMUNITY-FEATURES.md
@@ -0,0 +1,34 @@
+# Community features
+
+
+
+- **Portfolio** (https://github.com/Louisload/hugo-theme-terminal-portfolio)
+ - Allows you to create a portfolio page (or several). Supports icons and subsections.
+ - Luís Rodrigues Alves (Louisload), a game dev and musician.
+
+- **Single Page Website** (https://github.com/justinnuwin/hugo-theme-terminal)
+ - A layout where the homepage can render lists of pages and the navigation menu can link to sections on the homepage.
+ - Justin Nguyen, software and hardware developer.
+
+- **Support for beautiful *KaTeX* formulae** ([amtoine/hugo-theme-terminal-katex](https://github.com/amtoine/hugo-theme-terminal-katex))
+ - SHORT DESCRIPTION
+ - Antoine Stevan ([@amtoine](https://github.com/amtoine)), software engineer into open source
+
+- **Configurable timestamping for posts** ([KatieTheDev/hugo-theme-terminal](https://github.com/KatieTheDev/hugo-theme-terminal))
+ - Allows for configuring timestamping, not just datestamping
+ - Works with last modification dates as well
+ - KatieTheDev ([@KatieTheDev](https://github.com/KatieTheDev))
\ No newline at end of file
diff --git a/themes/terminal/LICENSE.md b/themes/terminal/LICENSE.md
new file mode 100644
index 0000000..d1a70b3
--- /dev/null
+++ b/themes/terminal/LICENSE.md
@@ -0,0 +1,20 @@
+The MIT License (MIT)
+
+Copyright (c) 2024 panr
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/themes/terminal/README.md b/themes/terminal/README.md
new file mode 100644
index 0000000..e49ab69
--- /dev/null
+++ b/themes/terminal/README.md
@@ -0,0 +1,319 @@
+# Terminal
+
+**Demo: https://panr.github.io/hugo-theme-terminal-demo/**
+
+**Create your own color scheme: https://panr.github.io/terminal-css/**
+
+
+
+---
+
+⚠️ The theme needs at least Hugo **Extended** v0.90.x.
+
+---
+
+- [Features](#features)
+- [Built-in shortcodes](#built-in-shortcodes)
+- [Code highlighting](#code-highlighting)
+- [How to start](#how-to-start)
+- [How to run your site](#how-to-run-your-site)
+- [How to configure](#how-to-configure)
+- [Post archetype](#post-archetype)
+- [Add-ons](#add-ons)
+- [How to edit the theme](#how-to-edit)
+- [Found a bug?](#bug)
+- [New cool idea or feature](#feature)
+- [Support](#support)
+- [License](#license)
+
+## Features
+
+- fully customizable color schemes generated by [**Terminal.css**](https://panr.github.io/terminal-css/).
+- [**Fira Code**](https://github.com/tonsky/FiraCode) as default monospaced font. It's gorgeous!
+- **really nice duotone**, custom syntax highlighting based on [**Chroma**](https://github.com/alecthomas/chroma) (fast, built-in Hugo syntax highlighter)
+- fully responsive
+- fully based on Hugo ecosystem (Pipes and Modules)
+
+#### Built-in shortcodes
+
+- **`image`** (props required: **`src`**; props optional: **`alt`**, **`position`** (**left** is default | center | right), **`style`**)
+ - e.g.
+ ```go
+ {{< image src="/img/hello.png" alt="Hello Friend" position="center" style="border-radius: 8px;" >}}
+ ```
+- **`code`** (props required: **`language`**; props optional: **`title`**, **`open`**)
+ - e.g.
+ ```go
+ {{< code language="css" title="Really cool snippet" open="true" >}}
+ pre {
+ background: #1a1a1d;
+ padding: 20px;
+ border-radius: 8px;
+ font-size: 1rem;
+ overflow: auto;
+
+ @media (--phone) {
+ white-space: pre-wrap;
+ word-wrap: break-word;
+ }
+
+ code {
+ background: none !important;
+ color: #ccc;
+ padding: 0;
+ font-size: inherit;
+ }
+ }
+ {{< /code >}}
+ ```
+
+#### Code highlighting
+
+A custom syntax highlighting based on Chroma. All you need to do is to wrap you code like this:
+
+````
+```html
+ // your code here
+```
+````
+
+You can find more here in the official Hugo [documentation](https://gohugo.io/content-management/syntax-highlighting/).
+
+**Supported languages**: https://github.com/alecthomas/chroma?tab=readme-ov-file#supported-languages
+
+## How to start
+
+You can download the theme manually by going to [https://github.com/panr/hugo-theme-terminal.git](https://github.com/panr/hugo-theme-terminal.git) and pasting it to `themes/terminal` in your root directory.
+
+You can also choose **one of the 3 possibilities** to install the theme:
+
+1. as Hugo Module
+2. as a standalone local directory
+3. as a git submodule
+
+⚠️ The theme needs at least Hugo **Extended** v0.90.x.
+
+### Install theme as Hugo Module
+
+```bash
+# If this is the first time you're using Hugo Modules
+# in your project. You have to initiate your own module before
+# you fetch the theme module.
+#
+# hugo mod init [your website/module name]
+hugo mod get github.com/panr/hugo-theme-terminal/v4
+```
+
+and in your config file add:
+
+```toml
+[module]
+ # this is needed when you fetch the theme as a submodule to your repo.
+ # replacements = "github.com/panr/hugo-theme-terminal/4 -> themes/terminal"
+[[module.imports]]
+ path = 'github.com/panr/hugo-theme-terminal/v4'
+```
+
+Keep in mind that the theme by default won't show up in the `themes` directory. This means that you are using the theme as it was on the repository at the moment you fetched it. Your local `go.sum` file keeps all the references. Read more about Hugo Modules in the [official documentation](https://gohugo.io/hugo-modules/).
+
+### Install theme locally
+
+```bash
+git clone https://github.com/panr/hugo-theme-terminal.git themes/terminal
+```
+
+This will clone the repository directly to the `themes/terminal` directory.
+
+### Install theme as a submodule
+
+```bash
+git submodule add -f https://github.com/panr/hugo-theme-terminal.git themes/terminal
+```
+
+This will install the repository as a submodule in the `themes/terminal` directory.
+
+⚠️ If you encounter any issues with:
+
+```bash
+Error: module "terminal" not found; either add it as a Hugo Module or store it in "[...your custom path]/themes".: module does not exist
+```
+
+then please try to remove `theme = "terminal"` from your config file.
+
+## How to run your site
+
+```bash
+hugo server -t terminal
+```
+
+and go to `localhost:1313` in your browser. From now on all the changes you make will go live, so you don't need to refresh your browser every single time.
+
+## How to configure
+
+The theme doesn't require any advanced configuration. Just copy:
+
+```toml
+baseurl = "/"
+languageCode = "en-us"
+# Add it only if you keep the theme in the `themes` directory.
+# Remove it if you use the theme as a remote Hugo Module.
+theme = "terminal"
+pagination.pagerSize = 5
+
+# Required for Chroma and the custom syntax highlighting.
+[markup.highlight]
+ noClasses = false
+
+[params]
+ # dir name of your main content (default is `content/posts`).
+ # the list of set content will show up on your index page (baseurl).
+ contentTypeName = "posts"
+
+ # if you set this to 0, only submenu trigger will be visible
+ showMenuItems = 2
+
+ # show selector to switch language
+ showLanguageSelector = false
+
+ # set theme to full screen width
+ fullWidthTheme = false
+
+ # center theme with default width
+ centerTheme = false
+
+ # if your resource directory contains an image called `cover.(jpg|png|webp)`,
+ # then the file will be used as a cover automatically.
+ # With this option you don't have to put the `cover` param in a front-matter.
+ autoCover = true
+
+ # set post to show the last updated
+ # If you use git, you can set `enableGitInfo` to `true` and then post will automatically get the last updated
+ showLastUpdated = false
+
+ # Provide a string as a prefix for the last update date. By default, it looks like this: 2020-xx-xx [Updated: 2020-xx-xx] :: Author
+ # updatedDatePrefix = "Updated"
+
+ # whether to show a page's estimated reading time
+ # readingTime = false # default
+
+ # whether to show a table of contents
+ # can be overridden in a page's front-matter
+ # Toc = false # default
+
+ # set title for the table of contents
+ # can be overridden in a page's front-matter
+ # TocTitle = "Table of Contents" # default
+
+ # Set date/time format for posts
+ # This will impact the date/time displayed on
+ # index.html, the posts list page, and on posts themselves
+ # This value can also be configured per-post on front matter
+ # If you have any issues with the timezone rendering differently
+ # than you expected, please ensure your timezone is correctly set
+ # on your server.
+ # This value can be customized according to Hugo documentation:
+ # https://gohugo.io/functions/time/format/
+ # Default value (no changes needed):
+ # dateFormat = "2006-01-02"
+ # Example format, with date, time, and timezone abbreviation:
+ # dateFormat = "2006-01-02 3:04:06 PM MST"
+
+
+[params.twitter]
+ # set Twitter handles for Twitter cards
+ # see https://developer.twitter.com/en/docs/tweets/optimize-with-cards/guides/getting-started#card-and-content-attribution
+ # do not include @
+ creator = ""
+ site = ""
+
+[languages]
+ [languages.en]
+ languageName = "English"
+ title = "Terminal"
+
+ [languages.en.params]
+ subtitle = "A simple, retro theme for Hugo"
+ owner = ""
+ keywords = ""
+ copyright = ""
+ menuMore = "Show more"
+ readMore = "Read more"
+ readOtherPosts = "Read other posts"
+ newerPosts = "Newer posts"
+ olderPosts = "Older posts"
+ missingContentMessage = "Page not found..."
+ missingBackButtonLabel = "Back to home page"
+ minuteReadingTime = "min read"
+ words = "words"
+
+ [languages.en.params.logo]
+ logoText = "Terminal"
+ logoHomeLink = "/"
+
+ [languages.en.menu]
+ [[languages.en.menu.main]]
+ identifier = "about"
+ name = "About"
+ url = "/about"
+ [[languages.en.menu.main]]
+ identifier = "showcase"
+ name = "Showcase"
+ url = "/showcase"
+
+[module]
+ # In case you would like to make changes to the theme and keep it locally in you repository,
+ # uncomment the line below (and correct the local path if necessary).
+ # --
+ # replacements = "github.com/panr/hugo-theme-terminal/v4 -> themes/terminal"
+[[module.imports]]
+ path = 'github.com/panr/hugo-theme-terminal/v4'
+```
+
+**NOTE:** Please keep in mind that currently `main menu` doesn't support nesting.
+
+## Post archetype
+
+See the default `post` file params supported by the theme — https://github.com/panr/hugo-theme-terminal/blob/master/archetypes/posts.md
+
+## Add-ons
+
+- **Comments** — for adding comments to your blog posts please take a look at `layouts/partials/comments.html` https://github.com/panr/hugo-theme-terminal/blob/master/layouts/partials/comments.html.
+- **Extended Head** — please take a look at `layouts/partials/extended_head.html` https://github.com/panr/hugo-theme-terminal/blob/master/layouts/partials/extended_head.html
+- **Extended Footer** — please take a look at `layouts/partials/extended_footer.html` https://github.com/panr/hugo-theme-terminal/blob/master/layouts/partials/extended_footer.html
+
+## How to edit the theme
+
+If you are using as a remote Hugo Module (you don't have the theme files in the `theme/terminal`) and you have to override only some of the styles, you can do this easily by adding `static/style.css` in your root directory and point things you want to change.
+
+If you have the theme files in the theme directory, then you can directly edit anything in the theme, you just have to go to `themes/terminal` and modify the files. No compilation step needed.
+
+## Found a bug?
+
+If you spot any bugs, please use [Issue Tracker](https://github.com/panr/hugo-theme-terminal/issues) or create a new [Pull Request](https://github.com/panr/hugo-theme-terminal/pulls) to fix the issue.
+
+## New cool idea or feature?
+
+The theme is in constant development since 2019 and has got many cool features that helped many of you and made the theme better. But there were also many features that I wasn't sure about because I want to keep the theme as simple as possible.
+
+So, let's say you have an idea of how to extend the theme. That's cool and you're welcome to do that, just follow these steps:
+
+- fork the theme
+- implement the feature
+- write an instruction how to use the feature
+- give a working example of the implementation for other users
+- add info about your work to `COMMUNITY-FEATURES.md`
+- make a PR with edited `COMMUNITY-FEATURES.md`
+
+This will help keeping the theme close to its roots, and also allow anyone who wishes to improve it and match their needs, to do whatever they want.
+
+Sounds OK? Cool, let's rock! 🤘
+
+## Support
+
+If you like what I'm doing and want to support my work. You can do it [here](https://ko-fi.com/pan_r). Thank you! ♥️
+
+## License
+
+Copyright © 2019-2025 Radek Kozieł ([@panr](https://rkoziel.com/))
+
+The theme is released under the MIT License. Check the [original theme license](https://github.com/panr/hugo-theme-terminal/blob/master/LICENSE.md) for additional licensing information.
diff --git a/themes/terminal/archetypes/posts.md b/themes/terminal/archetypes/posts.md
new file mode 100644
index 0000000..7064550
--- /dev/null
+++ b/themes/terminal/archetypes/posts.md
@@ -0,0 +1,14 @@
++++
+title = "{{ replace .TranslationBaseName "-" " " | title }}"
+date = "{{ .Date }}"
+#dateFormat = "2006-01-02" # This value can be configured for per-post date formatting
+author = ""
+authorTwitter = "" #do not include @
+cover = ""
+tags = ["", ""]
+keywords = ["", ""]
+description = ""
+showFullContent = false
+readingTime = false
+hideComments = false
++++
diff --git a/themes/terminal/assets/css/buttons.css b/themes/terminal/assets/css/buttons.css
new file mode 100644
index 0000000..eb48efb
--- /dev/null
+++ b/themes/terminal/assets/css/buttons.css
@@ -0,0 +1,84 @@
+.button-container {
+ display: table;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+button,
+.button,
+a.button {
+ position: relative;
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ padding: 8px 18px;
+ text-decoration: none;
+ text-align: center;
+ font: inherit;
+ font-weight: bold;
+ appearance: none;
+ cursor: pointer;
+ outline: none;
+}
+
+button.outline,
+.button.outline,
+a.button.outline {
+ background: transparent;
+ box-shadow: none;
+ padding: 8px 18px;
+}
+
+button.outline :hover,
+.button.outline :hover,
+a.button.outline :hover {
+ transform: none;
+ box-shadow: none;
+}
+
+button.link,
+.button.link,
+a.button.link {
+ background: none;
+ font-size: var(--font-size);
+}
+
+button.small,
+.button.small,
+a.button.small {
+ font-size: calc(var(--font-size) * 0.8);
+}
+
+button.wide,
+.button.wide,
+a.button.wide {
+ min-width: 200px;
+ padding: 14px 24px;
+}
+
+a.button.inline {
+ background: none;
+ color: var(--accent);
+ padding: initial;
+ margin: initial;
+ border: initial;
+ font-weight: initial;
+ text-decoration: none;
+}
+
+a.button.inline:active,
+a.button.inline:hover {
+ background: none;
+}
+
+a.read-more,
+a.read-more:hover,
+a.read-more:active {
+ display: inline-flex;
+ border: none;
+ background: none;
+ box-shadow: none;
+ padding: 0;
+ max-width: 100%;
+ text-decoration: none;
+}
diff --git a/themes/terminal/assets/css/code.css b/themes/terminal/assets/css/code.css
new file mode 100644
index 0000000..8788bd5
--- /dev/null
+++ b/themes/terminal/assets/css/code.css
@@ -0,0 +1,127 @@
+:root {
+ --code-border: color-mix(in srgb, var(--foreground) 10%, transparent);
+}
+
+pre:not(.chroma) {
+ padding: 10px;
+}
+
+pre.chroma {
+ margin: 0;
+ padding: 10px 0;
+ color: var(--foreground);
+}
+
+pre code {
+ color: var(--foreground);
+ border: none;
+}
+
+code {
+ color: var(--accent);
+ text-size-adjust: 100%;
+ -ms-text-size-adjust: 100%;
+ -moz-text-size-adjust: 100%;
+ -webkit-text-size-adjust: 100%;
+}
+
+.highlight {
+ position: relative;
+ margin: 20px 0;
+ border: 1px solid var(--code-border);
+}
+
+.highlight pre {
+ border: none;
+}
+
+.code-title {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ background: color-mix(in srgb, var(--foreground) 5%, transparent);
+ border-bottom: 1px solid var(--code-border);
+ color: var(--comment);
+ text-transform:uppercase;
+ font-size: calc(var(--font-size) * 0.8);
+ padding: 6px 10px;
+ line-height: 1;
+}
+
+.copy-button {
+ position: relative;
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ padding: 3px 8px;
+ text-decoration: none;
+ text-align: center;
+ font-size: 13px;
+ font-weight: 500;
+ border: 1px solid color-mix(in srgb, var(--accent) 15%, transparent);
+ appearance: none;
+ cursor: pointer;
+ outline: none;
+}
+
+.code-title .copy-button {
+ z-index: 1;
+ background: color-mix(in srgb, var(--foreground) 5%, var(--background));
+}
+
+.code-title:hover .copy-button {
+ display: inline-block;
+}
+
+.code-title .copy-button:hover {
+ background: color-mix(in srgb, var(--accent) 10%, var(--background));
+}
+
+.collapsable-code {
+ position: relative;
+ width: 100%;
+ margin: 20px 0;
+ border: 1px solid var(--accent);
+
+ .highlight {
+ margin: 0;
+ }
+}
+
+.collapsable-code__title {
+ display: inline-flex;
+ align-items: center;
+ flex: 1;
+ color: var(--accent);
+ padding: 3px 10px;
+ font-size: calc(var(--font-size) * 0.9);
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ overflow: hidden;
+}
+
+.collapsable-code__language {
+ color: var(--accent);
+ border: 1px solid var(--accent);
+ border-bottom: none;
+ text-transform: uppercase;
+ padding: 3px 10px;
+}
+
+.collapsable-code summary {
+ color: var(--accent);
+ padding: 0 10px;
+ cursor: pointer;
+}
+
+.collapsable-code summary:hover {
+ background: color-mix(in srgb, var(--accent) 10%, transparent);
+}
+
+.collapsable-code pre {
+ margin-top: 0;
+}
+
+.collapsable-code pre::first-line {
+ line-height: 0;
+}
diff --git a/themes/terminal/assets/css/fonts.css b/themes/terminal/assets/css/fonts.css
new file mode 100644
index 0000000..36c5cb7
--- /dev/null
+++ b/themes/terminal/assets/css/fonts.css
@@ -0,0 +1,18 @@
+/* latin-ext */
+@font-face {
+ font-family: 'Fira Code';
+ font-style: normal;
+ font-weight: 300 700;
+ font-display: swap;
+ src: url("../fonts/FiraCode-LatinExt.woff2") format('woff2');
+ unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
+}
+/* latin */
+@font-face {
+ font-family: 'Fira Code';
+ font-style: normal;
+ font-weight: 300 700;
+ font-display: swap;
+ src: url("../fonts/FiraCode-Latin.woff2") format('woff2');
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
+}
diff --git a/themes/terminal/assets/css/footer.css b/themes/terminal/assets/css/footer.css
new file mode 100644
index 0000000..850907e
--- /dev/null
+++ b/themes/terminal/assets/css/footer.css
@@ -0,0 +1,44 @@
+.footer {
+ padding: 40px 0;
+ flex-grow: 0;
+ opacity: 0.65;
+}
+
+.footer__inner {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ margin: 0;
+ max-width: 100%;
+}
+
+.footer a {
+ color: inherit;
+}
+
+.footer .copyright {
+ display: flex;
+ flex-flow: row wrap;
+ flex: 1;
+ align-items: center;
+ justify-content: center;
+}
+
+.footer .copyright--user {
+ margin: auto;
+ text-align: center;
+}
+
+.footer .copyright > *:first-child:not(:only-child) {
+ margin-right: 10px;
+}
+
+.footer .copyright span {
+ white-space: nowrap;
+}
+
+@media (max-width: 900px) {
+ .footer__inner {
+ flex-direction: column;
+ }
+}
diff --git a/themes/terminal/assets/css/gist.css b/themes/terminal/assets/css/gist.css
new file mode 100644
index 0000000..f4d2a51
--- /dev/null
+++ b/themes/terminal/assets/css/gist.css
@@ -0,0 +1,4 @@
+body .gist .blob-num,
+body .gist .blob-code-inner {
+ border: none;
+}
diff --git a/themes/terminal/assets/css/header.css b/themes/terminal/assets/css/header.css
new file mode 100644
index 0000000..309a798
--- /dev/null
+++ b/themes/terminal/assets/css/header.css
@@ -0,0 +1,46 @@
+.header {
+ display: flex;
+ flex-direction: column;
+ position: relative;
+}
+
+.header__inner {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+}
+
+.header__logo {
+ display: flex;
+ flex: 1;
+}
+
+.header__logo::after {
+ content: "";
+ background: repeating-linear-gradient(90deg, var(--accent), var(--accent) 2px, transparent 0, transparent 10px);
+ display: block;
+ width: 100%;
+ right: 10px;
+}
+
+.header__logo a {
+ flex: 0 0 auto;
+ max-width: 100%;
+ text-decoration: none;
+}
+
+.logo {
+ display: flex;
+ align-items: center;
+ text-decoration: none;
+ background: var(--accent);
+ color: var(--background);
+ font-weight: bold;
+ padding: 5px 10px;
+}
+
+@media print {
+ .header {
+ display: none;
+ }
+}
diff --git a/themes/terminal/assets/css/main.css b/themes/terminal/assets/css/main.css
new file mode 100644
index 0000000..9f4d3a7
--- /dev/null
+++ b/themes/terminal/assets/css/main.css
@@ -0,0 +1,520 @@
+:root {
+ --background: #1a170f;
+ --foreground: #eceae5;
+ --accent: #eec35e;
+ --font-size: 1rem;
+ --line-height: 1.54em;
+ --radius: 0;
+}
+
+html {
+ box-sizing: border-box;
+}
+
+*,
+*::before,
+*::after {
+ box-sizing: inherit;
+ word-break: break-word;
+}
+
+body {
+ margin: 0;
+ padding: 0;
+ font-family: "Fira Code", Monaco, Consolas, "Ubuntu Mono", monospace;
+ font-size: var(--font-size);
+ line-height: var(--line-height);
+ background-color: var(--background);
+ color: var(--foreground);
+ text-rendering: optimizelegibility;
+ -webkit-font-smoothing: antialiased;
+ -webkit-overflow-scrolling: touch;
+ text-size-adjust: 100%;
+}
+
+h1 {
+ font-size: calc(var(--font-size) * 1.45);
+ letter-spacing: 0;
+}
+
+h2 {
+ font-size: calc(var(--font-size) * 1.35);
+ letter-spacing: 0;
+}
+
+h3 {
+ font-size: calc(var(--font-size) * 1.15);
+ letter-spacing: 0;
+}
+
+h4,
+h5,
+h6 {
+ font-size: calc(var(--font-size) * 1);
+ letter-spacing: 0;
+}
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6,
+p,
+ul,
+ol,
+img,
+figure,
+video,
+table {
+ margin: 25px 0;
+}
+
+a {
+ color: var(--accent);
+}
+
+button {
+ position: relative;
+ font: inherit;
+ font-weight: bold;
+ text-decoration: none;
+ text-align: center;
+ background: transparent;
+ color: var(--accent);
+ padding: 5px 18px;
+ border: 4px solid var(--accent);
+ border-radius: var(--radius);
+ transition: background 0.15s linear;
+ appearance: none;
+ cursor: pointer;
+ outline: none;
+}
+
+button:hover {
+ background: color-mix(in srgb, var(--accent) 15%, transparent);
+}
+
+button:focus-visible,
+a:focus-visible {
+ outline: 1px solid var(--accent);
+ outline-offset: 2px;
+}
+
+fieldset {
+ display: inline-block;
+ border: 2px solid var(--foreground);
+ border-radius: calc(var(--radius) * 1.6);
+ padding: 10px;
+}
+
+fieldset *:first-child {
+ margin-top: 0;
+}
+
+fieldset input,
+fieldset select,
+fieldset textarea,
+fieldset label,
+fieldset button {
+ margin-top: calc(var(--line-height) * 0.5);
+ width: 100%;
+}
+
+label {
+ display: inline-block;
+}
+
+label input {
+ margin-top: 0;
+}
+
+input,
+textarea,
+select {
+ background: transparent;
+ color: var(--foreground);
+ border: 1px solid var(--foreground);
+ border-radius: var(--radius);
+ padding: 10px;
+ font: inherit;
+ appearance: none;
+}
+
+input[type="checkbox"] {
+ width: auto;
+}
+
+input:focus-visible,
+input:active,
+textarea:focus-visible,
+textarea:active,
+select:focus-visible,
+select:active {
+ border-color: var(--accent);
+ outline: 1px solid var(--accent);
+ outline-offset: 2px;
+}
+
+input:active,
+textarea:active,
+select:active {
+ box-shadow: none;
+}
+
+select {
+ background-image: linear-gradient(
+ 45deg,
+ transparent 50%,
+ var(--foreground) 50%
+ ),
+ linear-gradient(135deg, var(--foreground) 50%, transparent 50%);
+ background-position: calc(100% - 20px), calc(100% - 1em);
+ background-size:
+ 5px 5px,
+ 5px 5px;
+ background-repeat: no-repeat;
+ padding-right: 40px;
+}
+
+select option {
+ background: var(--background);
+}
+
+input[type="checkbox"] {
+ vertical-align: middle;
+ padding: 10px;
+ box-shadow: inset 0 0 0 3px var(--background);
+}
+
+input[type="checkbox"]:checked {
+ background: var(--accent);
+}
+
+img {
+ display: block;
+ max-width: 100%;
+ border: 8px solid var(--accent);
+ border-radius: var(--radius);
+ padding: 8px;
+ overflow: hidden;
+}
+
+img.left {
+ margin-right: auto;
+}
+
+img.center {
+ margin-left: auto;
+ margin-right: auto;
+}
+
+img.right {
+ margin-left: auto;
+}
+
+figure {
+ width: fit-content;
+}
+
+figure.left {
+ margin-right: auto;
+}
+
+figure.center {
+ margin-left: auto;
+ margin-right: auto;
+}
+
+figure.right {
+ margin-left: auto;
+}
+
+figure img,
+figure video {
+ margin-bottom: 0;
+}
+
+figure figcaption {
+ background: var(--accent);
+ color: var(--background);
+ text-align: center;
+ font-size: var(--font-size);
+ font-weight: normal;
+ margin-top: -8px;
+ padding: 0 8px;
+ border-radius: 0 0 var(--radius) var(--radius);
+}
+
+figure figcaption p:first-child {
+ margin-top: 0;
+}
+
+ul,
+ol {
+ margin-left: 4ch;
+ padding: 0;
+}
+
+ul ul,
+ul ol,
+ol ul,
+ol ol {
+ margin-top: 0;
+}
+
+li::marker {
+ color: var(--accent);
+}
+
+ul li,
+ol li {
+ position: relative;
+}
+
+code,
+kbd {
+ font-family:
+ "Fira Code",
+ Monaco,
+ Consolas,
+ "Ubuntu Mono",
+ monospace !important;
+ font-feature-settings: normal;
+ background: color-mix(in srgb, var(--foreground) 5%, transparent);
+ border: 1px solid var(--code-border);
+ padding: 1px 6px;
+ margin: 0 2px;
+ font-size: calc(var(--font-size) * 0.95);
+}
+
+kbd {
+ border-top: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
+ border-left: 1px solid var(--accent);
+ border-right: 1px solid var(--accent);
+ border-bottom: 4px solid var(--accent);
+ border-radius: 4px;
+}
+
+code code {
+ background: transparent;
+ padding: 0;
+ margin: 0;
+}
+
+pre {
+ tab-size: 4;
+ background: color-mix(in srgb, var(--foreground) 5%, transparent) !important;
+ color: var(--foreground);
+ padding: 20px 10px;
+ font-size: calc(var(--font-size) * 0.95) !important;
+ overflow: auto;
+ border-radius: var(--radius);
+ border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
+}
+
+pre code {
+ background: none !important;
+ margin: 0;
+ padding: 0;
+ border: none;
+}
+
+sup {
+ line-height: 0;
+}
+
+abbr {
+ position: relative;
+ text-decoration-style: wavy;
+ text-decoration-color: var(--accent);
+ cursor: help;
+}
+
+sub {
+ bottom: -0.25em;
+}
+
+sup {
+ top: -0.25em;
+}
+
+mark {
+ background: color-mix(in srgb, var(--accent) 45%, transparent);
+ color: var(--foreground);
+}
+
+blockquote {
+ position: relative;
+ border-top: 1px solid var(--accent);
+ border-bottom: 1px solid var(--accent);
+ margin: 0;
+ padding: 25px;
+}
+
+blockquote::before {
+ content: ">";
+ display: block;
+ position: absolute;
+ left: 0;
+ color: var(--accent);
+}
+
+blockquote p:first-child {
+ margin-top: 0;
+}
+
+blockquote p:last-child {
+ margin-bottom: 0;
+}
+
+table {
+ table-layout: auto;
+ border-collapse: collapse;
+}
+
+table,
+th,
+td {
+ border: 2px solid var(--foreground);
+ padding: 10px;
+}
+
+th {
+ border-style: solid;
+ color: var(--foreground);
+ text-align: left;
+ text-transform: uppercase;
+ letter-spacing: 0.04em;
+}
+
+hr {
+ width: 100%;
+ border: none;
+ background: var(--accent);
+ height: 2px;
+}
+
+/* One Heading Size */
+.headings--one-size h1,
+.headings--one-size h2,
+.headings--one-size h3,
+.headings--one-size h4,
+.headings--one-size h5,
+.headings--one-size h6 {
+ font-size: 1.4rem;
+ line-height: 1.3;
+ margin: 20px 0;
+}
+
+.headings--one-size ~ h1:first-child,
+.headings--one-size ~ h2:first-child,
+.headings--one-size ~ h3:first-child,
+.headings--one-size ~ h4:first-child,
+.headings--one-size ~ h5:first-child,
+.headings--one-size ~ h6:first-child {
+ margin-top: 20px;
+}
+
+blockquote.twitter-tweet {
+ position: relative;
+ background: var(--background);
+ font: inherit;
+ color: inherit;
+ border: 1px solid var(--accent);
+ padding-top: 60px;
+}
+
+blockquote.twitter-tweet a {
+ color: var(--accent);
+ text-decoration: underline;
+}
+
+blockquote.twitter-tweet::before {
+ content: "> From X:";
+ position: absolute;
+ top: 20px;
+ left: 20px;
+ color: var(--accent);
+ font-weight: bold;
+}
+
+.container {
+ display: flex;
+ flex-direction: column;
+ padding: 40px;
+ max-width: 864px;
+ min-height: 100vh;
+ border-right: 1px solid color-mix(in srgb, var(--accent) 10%, transparent);
+}
+
+.container.full, .container.center {
+ border: none;
+ margin: 0 auto;
+}
+
+.container.full {
+ max-width: 100%;
+}
+
+.content {
+ display: flex;
+ flex-direction: column;
+}
+
+.hidden {
+ display: none;
+}
+
+.__h_video {
+ position: relative;
+ overflow: visible !important;
+ height: auto !important;
+ padding-bottom: 0 !important;
+}
+
+.__h_video a {
+ position: relative;
+ display: block;
+ width: 100%;
+}
+
+.__h_video a img {
+ width: 100%;
+}
+
+.__h_video a .play {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ margin: auto;
+ width: 60px;
+ height: 60px;
+}
+
+iframe[src*="youtube.com"] {
+ border: 8px solid var(--accent) !important;
+ padding: 8px !important;
+}
+
+@media (max-width: 684px) {
+ :root {
+ --font-size: 0.95rem;
+ }
+
+ .container {
+ padding: 20px;
+ }
+}
+
+@media print {
+ .container {
+ display: initial;
+ }
+
+ .content {
+ display: initial;
+ }
+}
diff --git a/themes/terminal/assets/css/menu.css b/themes/terminal/assets/css/menu.css
new file mode 100644
index 0000000..1f8e59b
--- /dev/null
+++ b/themes/terminal/assets/css/menu.css
@@ -0,0 +1,148 @@
+.navigation-menu {
+ display: flex;
+ align-items: flex-start;
+ justify-content: space-between;
+ margin: 20px 1px;
+}
+
+.navigation-menu__inner {
+ display: flex;
+ flex: 1;
+ flex-wrap: wrap;
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+
+.navigation-menu__inner > li {
+ flex: 0 0 auto;
+ margin-bottom: 10px;
+ white-space: nowrap;
+}
+
+.navigation-menu__inner > li:not(:last-of-type) {
+ margin-right: 20px;
+}
+
+.navigation-menu .spacer {
+ flex-grow: 1 !important;
+}
+
+.menu {
+ display: flex;
+ flex-direction: column;
+ position: relative;
+ list-style: none;
+ padding: 0;
+ margin: 0;
+}
+
+.menu__trigger {
+ margin-right: 0 !important;
+ color: var(--accent);
+ user-select: none;
+ cursor: pointer;
+}
+
+.menu__dropdown {
+ display: none;
+ flex-direction: column;
+ position: absolute;
+ background: var(--background);
+ box-shadow: 0 10px var(--background), -10px 10px var(--background), 10px 10px var(--background);
+ color: var(--accent);
+ border: 2px solid var(--accent);
+ margin: 0;
+ padding: 10px;
+ top: 10px;
+ left: 0;
+ list-style: none;
+ z-index: 99;
+}
+
+.open .menu__dropdown {
+ display: flex;
+}
+
+.menu__dropdown > li {
+ flex: 0 0 auto;
+}
+
+.menu__dropdown > li:not(:last-of-type) {
+ margin-bottom: 10px;
+}
+
+.menu__dropdown > li a {
+ display: flex;
+ padding: 5px;
+}
+
+.menu--mobile .menu__trigger {
+ color: var(--accent);
+ border: 2px solid;
+ margin-left: 10px;
+ height: 100%;
+ padding: 3px 8px;
+ margin-bottom: 0 !important;
+ position: relative;
+ cursor: pointer;
+ display: none;
+}
+
+.menu--mobile li {
+ flex: 0 0 auto;
+}
+
+.menu--mobile li:not(:last-of-type) {
+ margin-bottom: 10px;
+}
+
+.menu--language-selector .menu__trigger {
+ color: var(--accent);
+ border: 2px solid;
+ margin-left: 5px;
+ height: 100%;
+ padding: 3px 8px;
+ margin-bottom: 0 !important;
+ position: relative;
+ cursor: pointer;
+}
+
+.menu--language-selector .menu__dropdown {
+ left: auto;
+ right: 0;
+}
+
+@media (max-width: 684px) {
+ .navigation-menu {
+ margin: 0;
+ }
+
+ .navigation-menu__inner {
+ flex-direction: column;
+ align-items: flex-start;
+ padding: 0;
+ }
+
+ .navigation-menu__inner li {
+ margin: 0;
+ padding: 5px;
+ }
+
+ .menu--desktop {
+ display: none;
+ }
+
+ .menu--mobile .menu__trigger {
+ display: block;
+ }
+
+ .menu--mobile .menu__dropdown {
+ left: auto;
+ right: 0;
+ }
+
+ .menu--language-selector .menu__trigger {
+ display: none;
+ }
+}
diff --git a/themes/terminal/assets/css/pagination.css b/themes/terminal/assets/css/pagination.css
new file mode 100644
index 0000000..b79984d
--- /dev/null
+++ b/themes/terminal/assets/css/pagination.css
@@ -0,0 +1,86 @@
+.pagination {
+ margin-top: 50px;
+}
+
+.pagination__title {
+ display: flex;
+ text-align: center;
+ position: relative;
+ margin: 100px 0 20px;
+}
+
+.pagination__title-h {
+ text-align: center;
+ margin: 0 auto;
+ padding: 5px 10px;
+ background: var(--background);
+ color: color-mix(in srgb var(--foreground) 30%, transparent);
+ font-size: calc(var(--font-size) * 0.8);
+ text-transform: uppercase;
+ text-decoration: none;
+ letter-spacing: 0.1em;
+ z-index: 1;
+}
+
+.pagination__title hr {
+ position: absolute;
+ left: 0;
+ right: 0;
+ width: 100%;
+ margin-top: 15px;
+ z-index: 0;
+}
+
+.pagination__buttons {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-flow: row wrap;
+ gap: 10px;
+}
+
+.pagination__buttons a {
+ display: inline-flex;
+ max-width: 100%;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ overflow: hidden;
+ text-decoration: none;
+}
+
+.button {
+ position: relative;
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ font-size: inherit;
+ padding: 0;
+ appearance: none;
+}
+
+.button a {
+ display: flex;
+ justify-content: center;
+ flex: 1;
+ padding: 8px 16px;
+}
+
+.button__text {
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ overflow: hidden;
+}
+
+.next .button__icon {
+ margin-left: 8px;
+}
+
+.prev .button__icon {
+ margin-right: 8px;
+}
+
+@media print {
+ .pagination {
+ display: none;
+ }
+}
diff --git a/themes/terminal/assets/css/post.css b/themes/terminal/assets/css/post.css
new file mode 100644
index 0000000..f533f43
--- /dev/null
+++ b/themes/terminal/assets/css/post.css
@@ -0,0 +1,141 @@
+.index-content {
+ margin: 25px 0;
+}
+
+.framed {
+ border: 1px solid var(--accent);
+ padding: 20px;
+}
+
+.framed *:first-child {
+ margin-top: 0;
+}
+
+.framed *:last-child {
+ margin-bottom: 0;
+}
+
+.posts {
+ width: 100%;
+}
+
+.post {
+ width: 100%;
+ text-align: left;
+ padding: 30px 0;
+}
+
+.post:not(:last-of-type) {
+ border-bottom: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
+}
+
+.post-meta {
+ font-size: inherit;
+ margin-bottom: 10px;
+ color: color-mix(in srgb, var(--foreground) 65%, transparent);
+}
+
+.post-meta > *:not(:first-child)::before {
+ content: "::";
+ display: inline-block;
+ margin: 0 8px;
+}
+
+.post-title {
+ position: relative;
+ color: var(--accent);
+ margin-top: 0 !important;
+ margin-bottom: 15px !important;
+ padding-bottom: 15px;
+ border-bottom: 3px dotted var(--accent);
+ text-decoration: none !important;
+}
+
+.post-title::after {
+ content: "";
+ position: absolute;
+ bottom: 2px;
+ display: block;
+ width: 100%;
+ border-bottom: 3px dotted var(--accent);
+}
+
+.post-title a {
+ text-decoration: none;
+}
+
+.post-tags {
+ display: block;
+ margin-bottom: 20px;
+ font-size: inherit;
+ color: var(--accent);
+}
+
+.table-of-contents {
+ margin: 40px 0;
+}
+
+.post-content {
+ margin-top: 25px;
+}
+
+.post-cover {
+ margin: 25px 0;
+}
+
+.post ul {
+ list-style: none;
+}
+
+.post ul li:not(:empty)::before {
+ content: "-";
+ position: absolute;
+ left: -20px;
+ color: var(--accent);
+}
+
+.post--regulation h1 {
+ justify-content: center;
+}
+
+.post--regulation h2 {
+ justify-content: center;
+ margin-bottom: 10px;
+}
+
+.post--regulation h2 + h2 {
+ margin-top: -10px;
+ margin-bottom: 20px;
+}
+
+.hanchor {
+ position: absolute;
+ color: var(--accent);
+ text-decoration: none;
+ margin-left: 10px;
+ visibility: hidden;
+}
+
+h1:hover .hanchor,
+h2:hover .hanchor,
+h3:hover .hanchor,
+h4:hover .hanchor,
+h5:hover .hanchor,
+h6:hover .hanchor {
+ visibility: visible;
+}
+
+.footnotes {
+ color: color-mix(in srgb, var(--foreground) 50%, transparent);
+}
+
+.footnotes hr {
+ background: color-mix(in srgb, var(--foreground) 50%, transparent);
+}
+
+@media (max-width: 684px) {
+ .post-cover {
+ padding: 10px;
+ border-width: 10px;
+ }
+}
diff --git a/themes/terminal/assets/css/syntax.css b/themes/terminal/assets/css/syntax.css
new file mode 100644
index 0000000..9ce4e4a
--- /dev/null
+++ b/themes/terminal/assets/css/syntax.css
@@ -0,0 +1,97 @@
+:root {
+ --first-tone: var(--accent);
+ --second-tone: color-mix(in srgb, var(--accent) 70%, transparent);
+ --comment: color-mix(in srgb, var(--foreground) 50%, transparent);
+}
+
+/* Background */ .bg { }
+/* PreWrapper */ .chroma { overflow:auto; }
+/* Other */ .chroma .x { }
+/* Error */ .chroma .err { }
+/* CodeLine */ .chroma .cl { }
+/* LineLink */ .chroma .lnlinks { outline:none;text-decoration:none;color:inherit }
+/* LineTableTD */ .chroma .lntd { width:100%;vertical-align:top;padding:0;margin:0;border:0; }
+/* LineTableTDNumbers */ .chroma .lntd:first-child { width: auto; }
+/* Custom */ .chroma .lntd code { display:grid; }
+/* LineTable */ .chroma .lntable { width:100%;border-spacing:0;padding:0;margin:0;border:0; }
+/* LineHighlight */ .chroma .hl { background-color:color-mix(in srgb, var(--foreground) 5%, transparent) !important}
+/* LineNumbersTable */ .chroma .lnt { color:var(--comment);white-space:pre;-webkit-user-select:none;user-select:none;padding:0 10px; }
+/* LineNumbers */ .chroma .ln { color:var(--comment);white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.8em;padding:0 0.4em 0 0; }
+/* Line */ .chroma .line { display:flex;padding:0 10px; }
+/* Keyword */ .chroma .k { color:var(--second-tone) }
+/* KeywordConstant */ .chroma .kc { color:var(--second-tone) }
+/* KeywordDeclaration */ .chroma .kd { color:var(--second-tone) }
+/* KeywordNamespace */ .chroma .kn { color:var(--second-tone) }
+/* KeywordPseudo */ .chroma .kp { color:var(--second-tone) }
+/* KeywordReserved */ .chroma .kr { color:var(--second-tone) }
+/* KeywordType */ .chroma .kt { color:var(--second-tone) }
+/* Name */ .chroma .n { color:var(--first-tone) }
+/* NameAttribute */ .chroma .na { color:var(--second-tone) }
+/* NameBuiltin */ .chroma .nb { color:var(--first-tone) }
+/* NameBuiltinPseudo */ .chroma .bp { color:var(--first-tone) }
+/* NameClass */ .chroma .nc { color:var(--foreground) }
+/* NameConstant */ .chroma .no { color:var(--first-tone) }
+/* NameDecorator */ .chroma .nd { color:var(--first-tone) }
+/* NameEntity */ .chroma .ni { color:var(--first-tone) }
+/* NameException */ .chroma .ne { color:var(--first-tone) }
+/* NameFunction */ .chroma .nf { color:var(--first-tone); }
+/* NameFunctionMagic */ .chroma .fm { color:var(--first-tone); }
+/* NameLabel */ .chroma .nl { color:var(--first-tone) }
+/* NameNamespace */ .chroma .nn { color:var(--first-tone) }
+/* NameOther */ .chroma .nx { color:var(--first-tone) }
+/* NameProperty */ .chroma .py { color:var(--first-tone) }
+/* NameTag */ .chroma .nt { color:var(--first-tone) }
+/* NameVariable */ .chroma .nv { color:var(--first-tone) }
+/* NameVariableClass */ .chroma .vc { color:var(--first-tone) }
+/* NameVariableGlobal */ .chroma .vg { color:var(--first-tone) }
+/* NameVariableInstance */ .chroma .vi { color:var(--first-tone) }
+/* NameVariableMagic */ .chroma .vm { color:var(--first-tone) }
+/* Literal */ .chroma .l { }
+/* LiteralDate */ .chroma .ld { }
+/* LiteralString */ .chroma .s { color:var(--foreground) }
+/* LiteralStringAffix */ .chroma .sa { color:var(--foreground) }
+/* LiteralStringBacktick */ .chroma .sb { color:var(--foreground) }
+/* LiteralStringChar */ .chroma .sc { color:var(--foreground) }
+/* LiteralStringDelimiter */ .chroma .dl { color:var(--foreground) }
+/* LiteralStringDoc */ .chroma .sd { color:var(--foreground) }
+/* LiteralStringDouble */ .chroma .s2 { color:var(--foreground) }
+/* LiteralStringEscape */ .chroma .se { color:var(--foreground) }
+/* LiteralStringHeredoc */ .chroma .sh { color:var(--foreground) }
+/* LiteralStringInterpol */ .chroma .si { color:var(--foreground) }
+/* LiteralStringOther */ .chroma .sx { color:var(--foreground) }
+/* LiteralStringRegex */ .chroma .sr { color:var(--foreground) }
+/* LiteralStringSingle */ .chroma .s1 { color:var(--foreground) }
+/* LiteralStringSymbol */ .chroma .ss { color:var(--foreground) }
+/* LiteralNumber */ .chroma .m { color:var(--first-tone) }
+/* LiteralNumberBin */ .chroma .mb { color:var(--first-tone) }
+/* LiteralNumberFloat */ .chroma .mf { color:var(--first-tone) }
+/* LiteralNumberHex */ .chroma .mh { color:var(--first-tone) }
+/* LiteralNumberInteger */ .chroma .mi { color:var(--first-tone) }
+/* LiteralNumberIntegerLong */ .chroma .il { color:var(--first-tone) }
+/* LiteralNumberOct */ .chroma .mo { color:var(--first-tone) }
+/* Operator */ .chroma .o { color:var(--foreground) }
+/* OperatorWord */ .chroma .ow { color:var(--foreground) }
+/* Punctuation */ .chroma .p { color:var(--foreground) }
+/* Comment */ .chroma .c { color:var(--comment) }
+/* CommentHashbang */ .chroma .ch { color:var(--comment) }
+/* CommentMultiline */ .chroma .cm { color:var(--comment) }
+/* CommentSingle */ .chroma .c1 { color:var(--comment) }
+/* CommentSpecial */ .chroma .cs { color:var(--comment) }
+/* CommentPreproc */ .chroma .cp { color:var(--comment) }
+/* CommentPreprocFile */ .chroma .cpf { color:var(--comment) }
+/* Generic */ .chroma .g { }
+/* GenericDeleted */ .chroma .gd { color:var(--first-tone) }
+/* GenericEmph */ .chroma .ge { }
+/* GenericError */ .chroma .gr { }
+/* GenericHeading */ .chroma .gh { }
+/* GenericInserted */ .chroma .gi { color:var(--second-tone); }
+/* GenericOutput */ .chroma .go { }
+/* GenericPrompt */ .chroma .gp { }
+/* GenericStrong */ .chroma .gs { }
+/* GenericSubheading */ .chroma .gu { }
+/* GenericTraceback */ .chroma .gt { }
+/* GenericUnderline */ .chroma .gl { }
+/* TextWhitespace */ .chroma .w { }
+
+/* LANGUAGE FIXES */
+/* PHP CommentPreproc */ .chroma .language-php .cp { color:var(--foreground) }
diff --git a/themes/terminal/assets/css/terminal.css b/themes/terminal/assets/css/terminal.css
new file mode 100644
index 0000000..0c7817a
--- /dev/null
+++ b/themes/terminal/assets/css/terminal.css
@@ -0,0 +1,2 @@
+/* Placeholder file for your custom settings. */
+/* You can get the color scheme variables from https://panr.github.io/terminal-css/ */
diff --git a/themes/terminal/assets/css/terms.css b/themes/terminal/assets/css/terms.css
new file mode 100644
index 0000000..4524f74
--- /dev/null
+++ b/themes/terminal/assets/css/terms.css
@@ -0,0 +1,18 @@
+.terms h3 {
+ font-size: initial;
+}
+
+.terms ul {
+ list-style: none;
+}
+
+.terms ul li a {
+ color: var(--accent);
+}
+
+.terms ul li:not(:empty)::before {
+ content: "-";
+ position: absolute;
+ left: -20px;
+ color: var(--accent);
+}
diff --git a/themes/terminal/assets/js/code.js b/themes/terminal/assets/js/code.js
new file mode 100644
index 0000000..b140d96
--- /dev/null
+++ b/themes/terminal/assets/js/code.js
@@ -0,0 +1,32 @@
+const blockcodes = document.querySelectorAll(".chroma code[data-lang]");
+
+for (const bc of blockcodes) {
+ const parent = bc.parentElement;
+ const content = bc.innerText.split("\n").filter(Boolean).join("\n");
+
+ // Code title
+ const title = document.createElement("div");
+ const lang = bc.dataset.lang;
+ title.classList.add("code-title");
+ title.innerText = lang;
+
+ // Copy to clipboard
+ if (navigator.clipboard !== undefined) {
+ const cpbutton = document.createElement("button");
+ cpbutton.classList.add("copy-button");
+ cpbutton.innerText = "Copy";
+
+ cpbutton.addEventListener("click", () => {
+ cpbutton.innerText = "Copied";
+ setTimeout(() => {
+ cpbutton.innerText = "Copy";
+ }, 1000);
+
+ navigator.clipboard.writeText(content);
+ });
+
+ title.append(cpbutton);
+ }
+
+ parent.closest(".highlight").prepend(title);
+}
diff --git a/themes/terminal/assets/js/menu.js b/themes/terminal/assets/js/menu.js
new file mode 100644
index 0000000..3b662e7
--- /dev/null
+++ b/themes/terminal/assets/js/menu.js
@@ -0,0 +1,44 @@
+const container = document.querySelector(".container");
+const allMenus = document.querySelectorAll(".menu");
+
+// Hide menus on body click
+document.body.addEventListener("click", () => {
+ allMenus.forEach(menu => {
+ if (menu.classList.contains("open")) {
+ menu.classList.remove("open");
+ }
+ });
+});
+
+// Reset menus on resize
+window.addEventListener("resize", () => {
+ allMenus.forEach(menu => {
+ menu.classList.remove("open");
+ });
+});
+
+// Handle desktop menu
+allMenus.forEach(menu => {
+ const trigger = menu.querySelector(".menu__trigger");
+ const dropdown = menu.querySelector(".menu__dropdown");
+
+ trigger.addEventListener("click", e => {
+ e.stopPropagation();
+
+ if (menu.classList.contains("open")) {
+ menu.classList.remove("open");
+ } else {
+ // Close all menus...
+ allMenus.forEach(m => m.classList.remove("open"));
+ // ...before opening the current one
+ menu.classList.add("open");
+ }
+
+ if (dropdown.getBoundingClientRect().right > container.getBoundingClientRect().right) {
+ dropdown.style.left = "auto";
+ dropdown.style.right = 0;
+ }
+ });
+
+ dropdown.addEventListener("click", e => e.stopPropagation());
+});
diff --git a/themes/terminal/babel.config.js b/themes/terminal/babel.config.js
new file mode 100644
index 0000000..64ddf6b
--- /dev/null
+++ b/themes/terminal/babel.config.js
@@ -0,0 +1,18 @@
+module.exports = function(api) {
+ api.cache(true);
+
+ const presets = [
+ [
+ "@babel/preset-env",
+ {
+ targets: "last 2 versions, >1%, not dead",
+ },
+ ],
+ ];
+ const plugins = [];
+
+ return {
+ presets,
+ plugins,
+ };
+};
diff --git a/themes/terminal/config.toml b/themes/terminal/config.toml
new file mode 100644
index 0000000..47b7807
--- /dev/null
+++ b/themes/terminal/config.toml
@@ -0,0 +1,4 @@
+[module]
+ [module.hugoVersion]
+ extended = true
+ min = '0.90.0'
diff --git a/themes/terminal/exampleSite/config.toml b/themes/terminal/exampleSite/config.toml
new file mode 100644
index 0000000..0ed55b2
--- /dev/null
+++ b/themes/terminal/exampleSite/config.toml
@@ -0,0 +1,37 @@
+baseurl = "https://example.com/"
+languageCode = "en-us"
+theme = "hugo-theme-terminal"
+pagination.pagerSize = 5
+
+[markup.goldmark.renderer]
+ unsafe = true
+
+[params]
+ contentTypeName = "posts"
+ showMenuItems = 2
+ fullWidthTheme = false
+ centerTheme = false
+
+[languages]
+ [languages.en]
+ title = "Terminal"
+ subtitle = "A simple, retro theme for Hugo"
+ keywords = ""
+ copyright = ""
+ menuMore = "Show more"
+ readMore = "Read more"
+ readOtherPosts = "Read other posts"
+
+ [languages.en.params.logo]
+ logoText = "Terminal"
+ logoHomeLink = "/"
+
+ [languages.en.menu]
+ [[languages.en.menu.main]]
+ identifier = "about"
+ name = "About"
+ url = "/about"
+ [[languages.en.menu.main]]
+ identifier = "showcase"
+ name = "Showcase"
+ url = "/showcase"
diff --git a/themes/terminal/exampleSite/content/about.md b/themes/terminal/exampleSite/content/about.md
new file mode 100644
index 0000000..e957768
--- /dev/null
+++ b/themes/terminal/exampleSite/content/about.md
@@ -0,0 +1,21 @@
++++
+title = "About"
+date = "2019-01-25"
+author = "Radek"
++++
+
+# Hi there
+
+My name is Radek and I'm the author of this theme. I made it to help you present your ideas easier.
+
+We all know how hard is to start something on the web, especially these days. You need to prepare a bunch of stuff, configure them and when that’s done — create the content.
+
+This theme is pretty basic and covers all of the essentials. All you have to do is start typing!
+
+The theme includes:
+
+- fully customizable color schemes generated by [**terminal.css**](https://panr.github.io/terminal-css/).
+- great reading experience thanks to [**Fira Code**](https://github.com/tonsky/FiraCode).
+- nice code highlighting thanks to [**PrismJS**](https://prismjs.com) that matches the theme's color scheme.
+
+So, there you have it... enjoy!
diff --git a/themes/terminal/exampleSite/content/posts/hello.md b/themes/terminal/exampleSite/content/posts/hello.md
new file mode 100644
index 0000000..6e3938b
--- /dev/null
+++ b/themes/terminal/exampleSite/content/posts/hello.md
@@ -0,0 +1,18 @@
++++
+title = "Hello Friend"
+date = "2019-01-25"
+author = "Lorem Ipsum"
+cover = "hello.jpg"
+description = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam nec interdum metus. Aenean rutrum ligula sodales ex auctor, sed tempus dui mollis. Curabitur ipsum dui, aliquet nec commodo at, tristique eget ante."
++++
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam nec interdum metus. Aenean rutrum ligula sodales ex auctor, sed tempus dui mollis. Curabitur ipsum dui, aliquet nec commodo at, tristique eget ante. **Donec quis dolor nec nunc mollis interdum vel in purus**. Sed vitae leo scelerisque, sollicitudin elit sed, congue ante. In augue nisl, vestibulum commodo est a, tristique porttitor est. Proin laoreet iaculis ornare. Nullam ut neque quam.
+
+> Fusce pharetra suscipit orci nec tempor. Quisque vitae sem sit amet sem mollis consequat. Sed at imperdiet lorem. Vestibulum pharetra faucibus odio, ac feugiat tellus sollicitudin at. Pellentesque varius tristique mi imperdiet dapibus. Duis orci odio, sodales lacinia venenatis sit amet, feugiat et diam.
+
+Sed a leo id risus venenatis vulputate non quis nulla. Aenean nisl quam, lacinia pulvinar orci sit amet, eleifend eleifend dui. Nulla tempor ligula leo, eu vehicula quam condimentum a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla gravida tristique nunc sed semper. Morbi nec felis odio.
+
+- Sed efficitur, lacus ac scelerisque pellentesque, lectus risus dignissim nisl, fermentum semper lectus diam eget lacus.
+- Nunc ornare purus enim, id eleifend mauris vestibulum volutpat.
+- Aenean facilisis ut ipsum condimentum ultrices.
+- Fusce sed metus vulputate, lobortis purus et, finibus purus. Suspendisse quis posuere lorem. Vivamus vulputate nec risus in pulvinar.
diff --git a/themes/terminal/exampleSite/content/showcase.md b/themes/terminal/exampleSite/content/showcase.md
new file mode 100644
index 0000000..bf6a26e
--- /dev/null
+++ b/themes/terminal/exampleSite/content/showcase.md
@@ -0,0 +1,192 @@
++++
+author = "Hugo Authors & Radek"
+title = "Showcase"
+date = "2019-03-11"
+description = "Sample article showcasing basic styling and formatting for HTML elements."
++++
+
+This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
+
+
+## Headings
+
+The following HTML ``—`` elements represent six levels of section headings. `` is the highest section level while `` is the lowest.
+
+# H1
+## H2
+### H3
+### H4
+#### H5
+##### H6
+
+## Paragraph
+
+Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
+
+Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
+
+## Images
+
+
+
+### Figure with a caption
+
+{{< figure src="/img/terminal-theme.png" alt="Terminal Theme Preview" position="center" caption="Terminal Theme Preview" captionPosition="center" >}}
+
+## Blockquotes
+
+The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
+
+### Blockquote without attribution
+
+> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
+> **Note** that you can use *Markdown syntax* within a blockquote.
+
+### Blockquote with attribution
+
+> Don't communicate by sharing memory, share memory by communicating.
+> — Rob Pike[^1]
+
+[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
+
+## Buttons and links
+
+Button
+Link
+Link
+
+## Tables
+
+Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
+
+ Name | Age
+--------|------
+ Bob | 27
+ Alice | 23
+
+### Inline Markdown within tables
+
+| Italics | Bold | Code |
+| -------- | -------- | ------ |
+| *italics* | **bold** | `code` |
+
+## Forms
+
+
+
+
+
+
+ Option 1
+ Option 2
+ Option 3
+
+
+ I understand
+ Submit
+
+
+## Code Blocks
+
+### Code block with backticks
+
+```html
+
+
+
+
+ Example HTML5 Document
+
+
+ Test
+
+
+```
+
+### Code block indented with four spaces
+
+
+
+
+
+ Example HTML5 Document
+
+
+ Test
+
+
+
+### Code block with Hugo's internal highlight shortcode
+
+{{< highlight html >}}
+
+
+
+
+ Example HTML5 Document
+
+
+ Test
+
+
+{{< /highlight >}}
+
+### Code block with custom built-in `{{ < code > }}` shortcode
+
+{{< code title="Hey, this is a code block title" language="css" >}}
+pre {
+ background: #1a1a1d;
+ padding: 20px;
+ border-radius: 8px;
+ font-size: 1rem;
+ overflow: auto;
+
+ @media (--phone) {
+ white-space: pre-wrap;
+ word-wrap: break-word;
+ }
+
+ code {
+ background: none !important;
+ color: #ccc;
+ padding: 0;
+ font-size: inherit;
+ }
+}
+{{< /code >}}
+
+## List Types
+
+### Ordered List
+
+1. First item
+2. Second item
+3. Third item
+
+### Unordered List
+
+* List item
+* Another item
+* And another item
+
+### Nested list
+
+* Fruit
+ * Apple
+ * Orange
+ * Banana
+* Dairy
+ * Milk
+ * Cheese
+
+## Other Elements — abbr, sub, sup, kbd, mark
+
+GIF is a bitmap image format.
+
+H2 O
+
+Xn + Yn = Zn
+
+Press CTRL +ALT +Delete to end the session.
+
+Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.
diff --git a/themes/terminal/exampleSite/static/img/hello.jpg b/themes/terminal/exampleSite/static/img/hello.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..37b2ab5a3565cce621798ec81640db7ec56d4016
GIT binary patch
literal 77622
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