moved theme into main tree
ci/woodpecker/push/woodpecker Pipeline failed
Details
|
@ -1 +0,0 @@
|
||||||
Subproject commit 2b14b3d4e5eab53aa45647490bb797b642a82a59
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"presets": [
|
||||||
|
["@babel/preset-env", {
|
||||||
|
"targets": "last 2 versions, >1%, not dead"
|
||||||
|
}],
|
||||||
|
],
|
||||||
|
}
|
|
@ -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
|
|
@ -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
|
||||||
|
.hugo_build.lock
|
|
@ -0,0 +1 @@
|
||||||
|
_
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/sh
|
||||||
|
. "$(dirname "$0")/_/husky.sh"
|
||||||
|
|
||||||
|
yarn build && git add . && git commit --amend --no-edit
|
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
"parser": "babel",
|
||||||
|
"printWidth": 100,
|
||||||
|
"trailingComma": "all",
|
||||||
|
"arrowParens": "avoid",
|
||||||
|
"overrides": [{
|
||||||
|
"files": ".html",
|
||||||
|
"options": {
|
||||||
|
"parser": "html"
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
}
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"extends": [
|
||||||
|
"stylelint-config-standard-scss",
|
||||||
|
"stylelint-config-prettier-scss"
|
||||||
|
],
|
||||||
|
"rules": {
|
||||||
|
"max-empty-lines": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
# Community features
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Did a cool thing with the theme and want to share it with rest of the Hello Friend theme users? Jump in!
|
||||||
|
|
||||||
|
Please follow the template:
|
||||||
|
|
||||||
|
- **NAME_OF_THE_FEATURE** (LINK TO YOUR FORK)
|
||||||
|
- SHORT DESCRIPTION
|
||||||
|
- SOMETHING ABOUT YOU (name and who you are / what you do / etc.)
|
||||||
|
|
||||||
|
eg:
|
||||||
|
|
||||||
|
- **Social media icons** (https://github.com/...)
|
||||||
|
- This was a big missing feature of the theme. It will help your audience reach you over the internet.
|
||||||
|
- John, a javascript developer.
|
||||||
|
-->
|
||||||
|
|
||||||
|
- **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.
|
|
@ -0,0 +1,20 @@
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2019 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.
|
|
@ -0,0 +1,309 @@
|
||||||
|
# Terminal
|
||||||
|
|
||||||
|
![Terminal](https://github.com/panr/hugo-theme-terminal/blob/master/images/screenshot.png?raw=true)
|
||||||
|
|
||||||
|
### DEMO - https://hugo-terminal.now.sh/
|
||||||
|
### ⚠️ 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)
|
||||||
|
- [Terminal theme user?](#terminal-theme-user)
|
||||||
|
- [Licence](#licence)
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
- **5 duotone themes**, depending on your preferences (orange is default, red, blue, green, pink)
|
||||||
|
- [**Fira Code**](https://github.com/tonsky/FiraCode) as default monospaced font. It's gorgeous!
|
||||||
|
- **really nice duotone**, custom syntax highlighting based on [**PrismJS**](https://prismjs.com)
|
||||||
|
- 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;" >}}
|
||||||
|
```
|
||||||
|
- **`figure`** (same as `image`, plus few optional props: **`caption`**, **`captionPosition`** (left | **center** is default | right), **`captionStyle`**)
|
||||||
|
- e.g.
|
||||||
|
```go
|
||||||
|
{{< figure src="/img/hello.png" alt="Hello Friend" position="center" style="border-radius: 8px;" caption="Hello Friend!" captionPosition="right" captionStyle="color: red;" >}}
|
||||||
|
```
|
||||||
|
- **`code`** (props required: **`language`**; props optional: **`title`**, **`id`**, **`expand`** (default "△"), **`collapse`** (default "▽"), **`isCollapsed`**)
|
||||||
|
- e.g.
|
||||||
|
```go
|
||||||
|
{{< code language="css" title="Really cool snippet" id="1" expand="Show" collapse="Hide" isCollapsed="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 PrismJS. All you need to do is to wrap you code like this:
|
||||||
|
|
||||||
|
````
|
||||||
|
```html
|
||||||
|
// your code here
|
||||||
|
```
|
||||||
|
````
|
||||||
|
|
||||||
|
**Supported languages**: actionscript, apacheconf, applescript, bash, c, clike, cmake, coffeescript, cpp, csharp, csp, css, css-extras, diff, django, docker, elixir, elm, erlang, flow, fsharp, git, go, graphql, haml, handlebars, haskell, http, java, javascript, json, jsx, kotlin, latex, less, llvm, makefile, markdown, markup, markup-templating, nasm, objectivec, ocaml, perl, php, php-extras, powershell, processing, pug, python, r, reason, ruby, rust, sass, scala, scheme, scss, sql, stylus, swift, textile, toml, tsx, twig, typescript, vim, visual-basic, wasm, yaml.
|
||||||
|
|
||||||
|
## 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/v3
|
||||||
|
```
|
||||||
|
|
||||||
|
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 -> themes/terminal"
|
||||||
|
[[module.imports]]
|
||||||
|
path = 'github.com/panr/hugo-theme-terminal/v3'
|
||||||
|
```
|
||||||
|
|
||||||
|
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 sumbodule 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"
|
||||||
|
paginate = 5
|
||||||
|
|
||||||
|
[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"
|
||||||
|
|
||||||
|
# ["orange", "blue", "red", "green", "pink"]
|
||||||
|
themeColor = "orange"
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
# set a custom favicon (default is a `themeColor` square)
|
||||||
|
# favicon = "favicon.ico"
|
||||||
|
|
||||||
|
# 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"
|
||||||
|
|
||||||
|
# set all headings to their default size (depending on browser settings)
|
||||||
|
# oneHeadingSize = true # default
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
|
||||||
|
[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"
|
||||||
|
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 -> themes/terminal"
|
||||||
|
[[module.imports]]
|
||||||
|
path = 'github.com/panr/hugo-theme-terminal'
|
||||||
|
```
|
||||||
|
|
||||||
|
to `config.toml` file in your Hugo root directory and change params fields. In case you need, here's [a YAML version](https://gist.github.com/panr/9eeea6f595c257febdadc11763e3a6d1).
|
||||||
|
|
||||||
|
**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 <a id="how-to-edit" />
|
||||||
|
|
||||||
|
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? <a id="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? <a id="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! 🤘
|
||||||
|
|
||||||
|
## Terminal theme user?
|
||||||
|
|
||||||
|
I'd be happy to know more about you and what you are doing. If you want to share it, please make a contribution and [add your site to the list](https://github.com/panr/hugo-theme-terminal/blob/master/USERS.md)! 🤗
|
||||||
|
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
Copyright © 2019-2022 Radosław Kozieł ([@panr](https://twitter.com/panr))
|
||||||
|
|
||||||
|
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.
|
|
@ -0,0 +1,75 @@
|
||||||
|
# Meet the users of Terminal theme!
|
||||||
|
- https://xicode.se **magistern** (Teacher)
|
||||||
|
- https://devmaster64.com **devmaster64** (Software Developer)
|
||||||
|
- https://mickie1.gitlab.io/blog/ **mickie** (Engineer)
|
||||||
|
- https://calloc.net **Vaibhav Yenamandra** (Software Engineer)
|
||||||
|
- https://potatofrom.space **Kevin Liu** (Software)
|
||||||
|
- https://horochx.org **horochx** (Software Developer)
|
||||||
|
- https://feng.si **Si Feng** (Software Engineer)
|
||||||
|
- https://ben-on-vms.com **Benedikt Frenzel** (Technical Support Engineer)
|
||||||
|
- https://johngazzini.com **John Gazzini** (Software Engineer)
|
||||||
|
- https://geekx.tech/ **Sagar Ladla** (Student Developer & Cyber Security Specialist)
|
||||||
|
- https://tears.io/ **Alex** (SRE)
|
||||||
|
- https://ayushkarn.me/ **Ayush Karn** (Student Developer)
|
||||||
|
- https://ssgram.dev **Ramaseshan Parthasarathy** (Software Developer)
|
||||||
|
- https://zaine.me **Amine Zaine** (Cloud Engineer)
|
||||||
|
- https://notes.dmaitre.phyip3.dur.ac.uk/computing-club/ **Ryan Moodie** (Physics PhD student)
|
||||||
|
- https://thecodecousins.com **Stanley Nguyen** (Software Engineer) & **Hoang Do** (Software & IoT Engineer)
|
||||||
|
- https://schacherbauer.dev **Markus Schacherbauer** (Student Developer)
|
||||||
|
- https://rinma.dev **Marvin Dalheimer** (Software Developer)
|
||||||
|
- https://lunar.computer **Lunar Computer** (DevOps Engineer)
|
||||||
|
- https://naxxfish.net **Chris Roberts** (Broadcast Systems Engineer)
|
||||||
|
- https://security.jtang.dev **Jonathan Tang** (Student & Software Engineer)
|
||||||
|
- https://andreacaravano.net **Andrea Caravano** (Student)
|
||||||
|
- https://dawsonverboven.com/ **Dawson Verboven** (Student & Software Developer)
|
||||||
|
- https://qbunt.com **Jeremy Bunting** (Software Engineer)
|
||||||
|
- https://smeik.org **Smeik** (Embedded Developer)
|
||||||
|
- https://code.willstocks.co.uk **Will Stocks** (Blogger & Developer)
|
||||||
|
- https://blog.vnandag.me **Nanda Gopal** (Student Developer)
|
||||||
|
- https://m47r1x.github.io **Neo** (Citizen of Zion)
|
||||||
|
- https://bgameiro.me/ **Bernardo Gameiro** (Engineer Physicist student)
|
||||||
|
- https://return-to-libc.com/ **elraro** (Cyber Security Specialist)
|
||||||
|
- https://pablart.com/ **Pablo Diaz-Gutierrez** (Software Engineer, General Tinkerer)
|
||||||
|
- https://waterloos.niflheimr.blue/ **cindrmon** (Student and Aspiring Software Engineer)
|
||||||
|
- https://monocle.rpod.club/ **classx** (DevOps Engineer)
|
||||||
|
- https://wjdevschool.com/ **Wojciech Bogócki** (Making Things & Teaching / W&J Dev School)
|
||||||
|
- https://erisianrite.com/ **ErisianRite** (Coding, Engineering, Tools for Thought)
|
||||||
|
- https://dongzhi.me **Joe** (Software Developer)
|
||||||
|
- https://isaes.com.tr/ **Isa Es** (Software Engineer)
|
||||||
|
- https://conight.com **Conight Wang** (Software Engineer)
|
||||||
|
- https://blog.m5e.de/ **Christoph Miksche** (Software Developer)
|
||||||
|
- https://mpostument.com/ **Maksym Postument** (DevOps Engineer)
|
||||||
|
- https://mathiejosh.xyz **Josh Mathie** (Electrical Engineering Technology Student/Sales and Engineering Tech)
|
||||||
|
- https://yuji.ne.jp/ **YUJI** (Student & Software Developer)
|
||||||
|
- https://blog.puvvadi.me **KD Puvvadi** (Software Dev & Cloud Orchestrator)
|
||||||
|
- https://hidden.land/ **Louisload** (Game Developer & Musician)
|
||||||
|
- https://linuxbase.nl **Michael Trip** (DevOps Engineer)
|
||||||
|
- https://markopolo123.github.io **Markopolo** (DevOps Engineer)
|
||||||
|
- https://openfoxblog.leven.dev/ **Damon Leven** (Student & Software Developer)
|
||||||
|
- https://blog.sethforprivacy.com **Seth For Privacy** (Security, privacy, and cryptocurrency writer, podcaster)
|
||||||
|
- https://thesprawl.city **crish** (Software and stuff)
|
||||||
|
- https://justinnuwin.com **Justin Nguyen** (Software & Hardware Developer)
|
||||||
|
- https://blog.woosal.com/ **Vusal Ismayilov** (Computer Engineering Student)
|
||||||
|
- https://itsembedded.com/ **Norbert Kremeris** (digital logic design and verification engineer)
|
||||||
|
- https://nereuxofficial.github.io **Nereuxofficial** (Software Developer & Student)
|
||||||
|
- https://biplav.xyz **Biplav's Blog** (Student)
|
||||||
|
- https://santiago.wtf **Nicholas Santiago** (DevOps Engineer)
|
||||||
|
- https://2200g.github.io/ **2200g** (Blogger/Student)
|
||||||
|
- https://cristiioan.me **Cristian Margine** (Student)
|
||||||
|
- https://they.mint.lgbt **Joey Aliaga** (Software Developer & Student)
|
||||||
|
- https://tatewilhelm.me **Tate Wilhelm** (Student, Programmer & Tinkerer)
|
||||||
|
- https://mikefoden.com **Mike Foden** (Software Developer)
|
||||||
|
- https://undemalum.github.io/portfolio/ **Mateusz Konat** (Student)
|
||||||
|
- https://ku0hn.radio **Ben Kuhn** (Ham Radio Operator, InfoSec Engineer, Tinkerer)
|
||||||
|
- https://bg117.xyz/projects **bg117** (Student and Hobby Programmer)
|
||||||
|
- https://www.grumpymetalguy.com **GrumpyMetalGuy** (General Grumper and Developer)
|
||||||
|
- https://blog.jontes.page **Jonte** (general tech geek)
|
||||||
|
- https://nazdarthegame.com/ **Michal Skoula** (Software Developer)
|
||||||
|
- https://1mup.myorange.house **Antonio Garosi** (Street art gallery)
|
||||||
|
|
||||||
|
<!--
|
||||||
|
TEMPLATE:
|
||||||
|
|
||||||
|
- https://radoslawkoziel.pl **Radek Kozieł** (Software Designer and Developer)
|
||||||
|
|
||||||
|
-->
|
|
@ -0,0 +1,14 @@
|
||||||
|
+++
|
||||||
|
title = "{{ replace .TranslationBaseName "-" " " | title }}"
|
||||||
|
date = "{{ .Date }}"
|
||||||
|
author = ""
|
||||||
|
authorTwitter = "" #do not include @
|
||||||
|
cover = ""
|
||||||
|
tags = ["", ""]
|
||||||
|
keywords = ["", ""]
|
||||||
|
description = ""
|
||||||
|
showFullContent = false
|
||||||
|
readingTime = false
|
||||||
|
hideComments = false
|
||||||
|
color = "" #color from the theme settings
|
||||||
|
+++
|
|
@ -0,0 +1,95 @@
|
||||||
|
.button-container {
|
||||||
|
display: table;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
button,
|
||||||
|
.button,
|
||||||
|
a.button {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 8px 18px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
text-decoration: none;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 8;
|
||||||
|
border: 1px solid $accent;
|
||||||
|
background: $accent;
|
||||||
|
color: $background;
|
||||||
|
font: inherit;
|
||||||
|
font-weight: bold;
|
||||||
|
appearance: none;
|
||||||
|
cursor: pointer;
|
||||||
|
outline: none;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: transparentize($accent, .1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* variants */
|
||||||
|
|
||||||
|
&.outline {
|
||||||
|
background: transparent;
|
||||||
|
box-shadow: none;
|
||||||
|
padding: 8px 18px;
|
||||||
|
|
||||||
|
:hover {
|
||||||
|
transform: none;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.link {
|
||||||
|
background: none;
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* sizes */
|
||||||
|
|
||||||
|
&.small {
|
||||||
|
font-size: .8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.wide {
|
||||||
|
min-width: 200px;
|
||||||
|
padding: 14px 24px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
a.read-more,
|
||||||
|
a.read-more:hover,
|
||||||
|
a.read-more:active {
|
||||||
|
display: inline-flex;
|
||||||
|
border: none;
|
||||||
|
color: $accent;
|
||||||
|
background: none;
|
||||||
|
box-shadow: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 20px 0;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-toolbar {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
|
||||||
|
.toolbar-item a {
|
||||||
|
position: relative;
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 3px 8px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
text-decoration: none;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 13px;
|
||||||
|
font-weight: 500;
|
||||||
|
border-radius: 8px;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
appearance: none;
|
||||||
|
cursor: pointer;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,84 @@
|
||||||
|
.collapsable-code {
|
||||||
|
$border-color: mix($accent, #999, 90%);
|
||||||
|
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
margin: 40px 0;
|
||||||
|
|
||||||
|
input[type="checkbox"] {
|
||||||
|
position: absolute;
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type="checkbox"]:checked {
|
||||||
|
~ pre,
|
||||||
|
~ .code-toolbar pre {
|
||||||
|
height: 0;
|
||||||
|
padding: 0;
|
||||||
|
border-top: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
~ .code-toolbar {
|
||||||
|
padding: 0;
|
||||||
|
border-top: none;
|
||||||
|
|
||||||
|
.toolbar {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
~ label .collapsable-code__toggle:after {
|
||||||
|
content: attr(data-label-expand);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
min-width: 30px;
|
||||||
|
min-height: 30px;
|
||||||
|
margin: 0;
|
||||||
|
border-bottom: 1px solid $border-color;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__title {
|
||||||
|
flex: 1;
|
||||||
|
color: $accent;
|
||||||
|
padding: 3px 10px;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__language {
|
||||||
|
color: $accent;
|
||||||
|
border: 1px solid $border-color;
|
||||||
|
border-bottom: none;
|
||||||
|
text-transform: uppercase;
|
||||||
|
padding: 3px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__toggle {
|
||||||
|
color: $accent;
|
||||||
|
font-size: 16px;
|
||||||
|
padding: 3px 10px;
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
content: attr(data-label-collapse);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
margin-top: 0;
|
||||||
|
|
||||||
|
&::first-line {
|
||||||
|
line-height: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-toolbar {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
$accent: #23B0FF;
|
|
@ -0,0 +1 @@
|
||||||
|
$accent: #78E2A0;
|
|
@ -0,0 +1 @@
|
||||||
|
$accent: #FFA86A;
|
|
@ -0,0 +1 @@
|
||||||
|
$accent: #EE72F1;
|
|
@ -0,0 +1 @@
|
||||||
|
$accent: #FF6266;
|
|
@ -0,0 +1,15 @@
|
||||||
|
@font-face {
|
||||||
|
font-display: swap;
|
||||||
|
font-family: 'Fira Code';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
src: url("../fonts/FiraCode-Regular.woff") format("woff");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-display: swap;
|
||||||
|
font-family: 'Fira Code';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 800;
|
||||||
|
src: url("../fonts/FiraCode-Bold.woff") format("woff");
|
||||||
|
}
|
|
@ -0,0 +1,44 @@
|
||||||
|
.footer {
|
||||||
|
padding: 40px 0;
|
||||||
|
flex-grow: 0;
|
||||||
|
opacity: .5;
|
||||||
|
|
||||||
|
&__inner {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
margin: 0;
|
||||||
|
width: 760px;
|
||||||
|
max-width: 100%;
|
||||||
|
|
||||||
|
@media ($tablet) {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copyright {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: row wrap;
|
||||||
|
flex: 1;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 1rem;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
&--user {
|
||||||
|
margin: auto;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
& > *:first-child:not(:only-child) {
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
input, textarea, select {
|
||||||
|
background: transparent;
|
||||||
|
color: $accent;
|
||||||
|
border: 1px solid $accent;
|
||||||
|
border-radius: 0;
|
||||||
|
padding: 10px;
|
||||||
|
font: inherit;
|
||||||
|
appearance: none;
|
||||||
|
|
||||||
|
&:focus, :active {
|
||||||
|
border-color: $color;
|
||||||
|
outline: 1px solid $color;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
select {
|
||||||
|
background: $background;
|
||||||
|
|
||||||
|
option {
|
||||||
|
background: $background;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
::placeholder {
|
||||||
|
color: transparentize($accent, .5);
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
body .gist .blob-num /* line numbers */,
|
||||||
|
body .gist .blob-code-inner
|
||||||
|
{
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
.header {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__inner {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__logo {
|
||||||
|
display: flex;
|
||||||
|
flex: 1;
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
content: '';
|
||||||
|
background: repeating-linear-gradient(90deg, $accent, $accent 2px, transparent 0, transparent 10px);
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
max-width: 100%;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
.logo {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
text-decoration: none;
|
||||||
|
background: $accent;
|
||||||
|
color: black;
|
||||||
|
padding: 5px 10px;
|
||||||
|
}
|
|
@ -0,0 +1,346 @@
|
||||||
|
html {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
*,
|
||||||
|
*:before,
|
||||||
|
*:after {
|
||||||
|
box-sizing: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
font-family: 'Fira Code', Monaco, Consolas, Ubuntu Mono, monospace;
|
||||||
|
font-size: 1rem;
|
||||||
|
line-height: 1.54;
|
||||||
|
letter-spacing: -0.02em;
|
||||||
|
background-color: $background;
|
||||||
|
color: $color;
|
||||||
|
text-rendering: optimizeLegibility;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
font-feature-settings: "liga", "tnum", "zero", "ss01", "locl";
|
||||||
|
font-variant-ligatures: contextual;
|
||||||
|
-webkit-overflow-scrolling: touch;
|
||||||
|
-webkit-text-size-adjust: 100%;
|
||||||
|
|
||||||
|
@media ($phone) {
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.headings--one-size {
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6 {
|
||||||
|
line-height: 1.3;
|
||||||
|
|
||||||
|
&:not(first-child) {
|
||||||
|
margin-top: 40px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3 {
|
||||||
|
font-size: 1.4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6 {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: inherit;
|
||||||
|
|
||||||
|
/* Waiting for a better times... */
|
||||||
|
/* &:has(code) {
|
||||||
|
text-decoration-color: $accent;
|
||||||
|
} */
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
display: block;
|
||||||
|
max-width: 100%;
|
||||||
|
|
||||||
|
&.left {
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.center {
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.right {
|
||||||
|
margin-left: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
figure {
|
||||||
|
display: table;
|
||||||
|
max-width: 100%;
|
||||||
|
margin: 25px 0;
|
||||||
|
|
||||||
|
&.left {
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.center {
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.right {
|
||||||
|
margin-left: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
figcaption {
|
||||||
|
font-size: 14px;
|
||||||
|
padding: 5px 10px;
|
||||||
|
margin-top: 5px;
|
||||||
|
background: $accent;
|
||||||
|
color: $background;
|
||||||
|
/* opacity: .8; */
|
||||||
|
|
||||||
|
&.left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
code, kbd {
|
||||||
|
font-family: 'Fira Code', Monaco, Consolas, Ubuntu Mono, monospace !important;
|
||||||
|
font-feature-settings: normal;
|
||||||
|
background: transparentize($accent, .8);
|
||||||
|
color: $accent;
|
||||||
|
padding: 1px 6px;
|
||||||
|
margin: 0 2px;
|
||||||
|
font-size: .95rem;
|
||||||
|
|
||||||
|
code, kbd {
|
||||||
|
background: transparent;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
background: transparent !important;
|
||||||
|
padding: 20px 10px;
|
||||||
|
margin: 40px 0;
|
||||||
|
font-size: .95rem !important;
|
||||||
|
overflow: auto;
|
||||||
|
border-top: 1px solid rgba(255, 255, 255, .1);
|
||||||
|
border-bottom: 1px solid rgba(255, 255, 255, .1);
|
||||||
|
|
||||||
|
+ pre {
|
||||||
|
border-top: 0;
|
||||||
|
margin-top: -40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media ($phone) {
|
||||||
|
white-space: pre-wrap;
|
||||||
|
word-wrap: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
background: none !important;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
font-size: inherit;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
border-top: 1px solid $accent;
|
||||||
|
border-bottom: 1px solid $accent;
|
||||||
|
margin: 40px 0;
|
||||||
|
padding: 25px;
|
||||||
|
|
||||||
|
@media ($phone) {
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
p:first-of-type {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
p:last-of-type {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
p:first-of-type:before {
|
||||||
|
content: '>';
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
left: -25px;
|
||||||
|
color: $accent;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.twitter-tweet {
|
||||||
|
position: relative;
|
||||||
|
background: transparentize($accent, .9);
|
||||||
|
font: inherit;
|
||||||
|
color: inherit;
|
||||||
|
border: 1px solid $accent;
|
||||||
|
padding-top: 60px;
|
||||||
|
|
||||||
|
p:before {
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
|
&:before {
|
||||||
|
content: '> From Twitter:';
|
||||||
|
position: absolute;
|
||||||
|
top: 20px;
|
||||||
|
color: $accent;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: $accent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
table-layout: auto;
|
||||||
|
border-collapse: collapse;
|
||||||
|
width: 100%;
|
||||||
|
margin: 40px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
table,
|
||||||
|
th,
|
||||||
|
td {
|
||||||
|
border: 1px dashed $accent;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
color: $accent;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul,
|
||||||
|
ol {
|
||||||
|
margin-left: 22px;
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
li {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media ($phone) {
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ol {
|
||||||
|
list-style: none;
|
||||||
|
counter-reset: li;
|
||||||
|
|
||||||
|
li {
|
||||||
|
counter-increment: li;
|
||||||
|
}
|
||||||
|
|
||||||
|
li:before {
|
||||||
|
content: counter(li);
|
||||||
|
position: absolute;
|
||||||
|
right: calc(100% + 10px);
|
||||||
|
color: $accent;
|
||||||
|
display: inline-block;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol {
|
||||||
|
margin-left: 38px;
|
||||||
|
|
||||||
|
li {
|
||||||
|
counter-increment: li;
|
||||||
|
}
|
||||||
|
|
||||||
|
li:before {
|
||||||
|
content: counters(li, ".") " ";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
mark {
|
||||||
|
background: $accent;
|
||||||
|
color: $background;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
padding: 40px;
|
||||||
|
max-width: 864px;
|
||||||
|
min-height: 100vh;
|
||||||
|
border-right: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
|
|
||||||
|
&.full,
|
||||||
|
&.center {
|
||||||
|
border: none;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.full {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media ($phone) {
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
display: initial;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
display: initial;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
width: 100%;
|
||||||
|
border: none;
|
||||||
|
background: $border-color;
|
||||||
|
height: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
sup {
|
||||||
|
line-height: 0;
|
||||||
|
}
|
|
@ -0,0 +1,157 @@
|
||||||
|
@mixin menu {
|
||||||
|
display: none;
|
||||||
|
flex-direction: column;
|
||||||
|
$shadow-color: transparentize($background, .2);
|
||||||
|
$shadow: 0 10px $shadow-color, -10px 10px $shadow-color, 10px 10px $shadow-color;
|
||||||
|
position: absolute;
|
||||||
|
background: $background;
|
||||||
|
box-shadow: $shadow;
|
||||||
|
color: white;
|
||||||
|
border: 2px solid;
|
||||||
|
margin: 0;
|
||||||
|
padding: 10px;
|
||||||
|
top: 10px;
|
||||||
|
left: 0;
|
||||||
|
list-style: none;
|
||||||
|
z-index: 99;
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin header-menu-trigger {
|
||||||
|
color: $accent;
|
||||||
|
border: 2px solid;
|
||||||
|
margin-left: 10px;
|
||||||
|
height: 100%;
|
||||||
|
padding: 3px 8px;
|
||||||
|
margin-bottom: 0 !important;
|
||||||
|
position: relative;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navigation-menu {
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
justify-content: space-between;
|
||||||
|
margin: 20px 1px;
|
||||||
|
|
||||||
|
@media ($phone) {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__inner {
|
||||||
|
display: flex;
|
||||||
|
flex: 1;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
list-style: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
> li {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
white-space: nowrap;
|
||||||
|
|
||||||
|
&:not(:last-of-type) {
|
||||||
|
margin-right: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media ($phone) {
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: flex-start;
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
li {
|
||||||
|
margin: 0;
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.spacer {
|
||||||
|
flex-grow: 1 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
position: relative;
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
&__trigger {
|
||||||
|
margin-right: 0 !important;
|
||||||
|
color: $accent;
|
||||||
|
user-select: none;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__dropdown {
|
||||||
|
@include menu;
|
||||||
|
|
||||||
|
.open & {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
> li {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
|
||||||
|
&:not(:last-of-type) {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
display: flex;
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&--desktop {
|
||||||
|
@media ($phone) {
|
||||||
|
display: none
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&--mobile {
|
||||||
|
.menu__trigger {
|
||||||
|
@include header-menu-trigger;
|
||||||
|
display: none;
|
||||||
|
|
||||||
|
@media ($phone) {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu__dropdown {
|
||||||
|
@media ($phone) {
|
||||||
|
left: auto;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
|
||||||
|
&:not(:last-of-type) {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&--language-selector {
|
||||||
|
.menu__trigger {
|
||||||
|
@include header-menu-trigger;
|
||||||
|
|
||||||
|
@media ($phone) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu__dropdown {
|
||||||
|
left: auto;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,87 @@
|
||||||
|
.pagination {
|
||||||
|
margin-top: 50px;
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__title {
|
||||||
|
display: flex;
|
||||||
|
text-align: center;
|
||||||
|
position: relative;
|
||||||
|
margin: 100px 0 20px;
|
||||||
|
|
||||||
|
&-h {
|
||||||
|
text-align: center;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 5px 10px;
|
||||||
|
background: $background;
|
||||||
|
color: transparentize($color, .7);
|
||||||
|
font-size: .8rem;
|
||||||
|
text-transform: uppercase;
|
||||||
|
text-decoration: none;
|
||||||
|
letter-spacing: .1em;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
width: 100%;
|
||||||
|
margin-top: 15px;
|
||||||
|
z-index: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__buttons {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
flex-flow: row wrap;
|
||||||
|
gap: 10px;
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.button {
|
||||||
|
position: relative;
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
font-size: 1rem;
|
||||||
|
padding: 0;
|
||||||
|
appearance: none;
|
||||||
|
|
||||||
|
@media($phone) {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
flex: 1;
|
||||||
|
padding: 8px 16px;
|
||||||
|
text-decoration: none;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__text {
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.next .button__icon {
|
||||||
|
margin-left: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.previous .button__icon {
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,128 @@
|
||||||
|
.index-content {
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.framed {
|
||||||
|
border: 1px solid $accent;
|
||||||
|
padding: 20px;
|
||||||
|
|
||||||
|
*:first-child {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
*:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.posts {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.post {
|
||||||
|
width: 100%;
|
||||||
|
text-align: left;
|
||||||
|
margin: 20px auto;
|
||||||
|
padding: 20px 0;
|
||||||
|
|
||||||
|
&:not(:last-of-type) {
|
||||||
|
border-bottom: 1px solid $border-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-meta {
|
||||||
|
font-size: 1rem;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
color: transparentize($accent, .3);
|
||||||
|
}
|
||||||
|
|
||||||
|
&-title {
|
||||||
|
$border: 3px dotted $accent;
|
||||||
|
position: relative;
|
||||||
|
color: $accent;
|
||||||
|
margin: 0 0 15px;
|
||||||
|
padding-bottom: 15px;
|
||||||
|
border-bottom: $border;
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
bottom: 2px;
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
border-bottom: $border;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&-tags {
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
font-size: 1rem;
|
||||||
|
opacity: .5;
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&-content {
|
||||||
|
margin-top: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-cover {
|
||||||
|
border: 20px solid $accent;
|
||||||
|
background: transparent;
|
||||||
|
margin: 40px 0;
|
||||||
|
padding: 20px;
|
||||||
|
|
||||||
|
@media ($phone) {
|
||||||
|
padding: 10px;
|
||||||
|
border-width: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
list-style: none;
|
||||||
|
|
||||||
|
li:not(:empty):before {
|
||||||
|
content: '-';
|
||||||
|
position: absolute;
|
||||||
|
left: -20px;
|
||||||
|
color: $accent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.post--regulation {
|
||||||
|
h1 {
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
justify-content: center;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
|
||||||
|
& + h2 {
|
||||||
|
margin-top: -10px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.hanchor {
|
||||||
|
color: transparentize($accent, .1);
|
||||||
|
text-decoration: none;
|
||||||
|
margin-left: 10px;
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1:hover a, h2:hover a, h3:hover a, h4:hover a {
|
||||||
|
visibility: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footnotes {
|
||||||
|
color: transparentize($color, .5);
|
||||||
|
}
|
|
@ -0,0 +1,336 @@
|
||||||
|
/* PrismJS 1.24.1
|
||||||
|
https://prismjs.com/download.html#themes=prism-tomorrow&languages=markup+css+clike+javascript+actionscript+apacheconf+applescript+bash+c+csharp+cpp+cmake+coffeescript+csp+css-extras+diff+django+docker+elixir+elm+erlang+fsharp+flow+git+go+graphql+haml+handlebars+haskell+http+java+json+kotlin+latex+less+llvm+makefile+markdown+markup-templating+nasm+objectivec+ocaml+perl+php+php-extras+powershell+processing+pug+python+r+jsx+tsx+reason+ruby+rust+sass+scss+scala+scheme+sql+stylus+swift+textile+toml+twig+typescript+vim+visual-basic+wasm+yaml&plugins=line-highlight+line-numbers+jsonp-highlight+highlight-keywords+command-line+toolbar+copy-to-clipboard */
|
||||||
|
/**
|
||||||
|
* prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
|
||||||
|
* Based on https://github.com/chriskempson/tomorrow-theme
|
||||||
|
* @author Rose Pritchard
|
||||||
|
*/
|
||||||
|
|
||||||
|
code[class*="language-"],
|
||||||
|
pre[class*="language-"] {
|
||||||
|
color: #ccc;
|
||||||
|
background: none;
|
||||||
|
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
||||||
|
font-size: 1em;
|
||||||
|
text-align: left;
|
||||||
|
white-space: pre;
|
||||||
|
word-spacing: normal;
|
||||||
|
word-break: normal;
|
||||||
|
word-wrap: normal;
|
||||||
|
line-height: 1.5;
|
||||||
|
|
||||||
|
-moz-tab-size: 4;
|
||||||
|
-o-tab-size: 4;
|
||||||
|
tab-size: 4;
|
||||||
|
|
||||||
|
-webkit-hyphens: none;
|
||||||
|
-moz-hyphens: none;
|
||||||
|
-ms-hyphens: none;
|
||||||
|
hyphens: none;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Code blocks */
|
||||||
|
pre[class*="language-"] {
|
||||||
|
padding: 1em;
|
||||||
|
margin: .5em 0;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
:not(pre) > code[class*="language-"],
|
||||||
|
pre[class*="language-"] {
|
||||||
|
background: #2d2d2d;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Inline code */
|
||||||
|
:not(pre) > code[class*="language-"] {
|
||||||
|
padding: .1em;
|
||||||
|
border-radius: .3em;
|
||||||
|
white-space: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.comment,
|
||||||
|
.token.block-comment,
|
||||||
|
.token.prolog,
|
||||||
|
.token.doctype,
|
||||||
|
.token.cdata {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.punctuation {
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.tag,
|
||||||
|
.token.attr-name,
|
||||||
|
.token.namespace,
|
||||||
|
.token.deleted {
|
||||||
|
color: #e2777a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.function-name {
|
||||||
|
color: #6196cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.boolean,
|
||||||
|
.token.number,
|
||||||
|
.token.function {
|
||||||
|
color: #f08d49;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.property,
|
||||||
|
.token.class-name,
|
||||||
|
.token.constant,
|
||||||
|
.token.symbol {
|
||||||
|
color: #f8c555;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.selector,
|
||||||
|
.token.important,
|
||||||
|
.token.atrule,
|
||||||
|
.token.keyword,
|
||||||
|
.token.builtin {
|
||||||
|
color: #cc99cd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.string,
|
||||||
|
.token.char,
|
||||||
|
.token.attr-value,
|
||||||
|
.token.regex,
|
||||||
|
.token.variable {
|
||||||
|
color: #7ec699;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.operator,
|
||||||
|
.token.entity,
|
||||||
|
.token.url {
|
||||||
|
color: #67cdcc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.important,
|
||||||
|
.token.bold {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.token.italic {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.entity {
|
||||||
|
cursor: help;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.inserted {
|
||||||
|
color: green;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre[data-line] {
|
||||||
|
position: relative;
|
||||||
|
padding: 1em 0 1em 3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.line-highlight {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
padding: inherit 0;
|
||||||
|
margin-top: 1em; /* Same as .prism’s padding-top */
|
||||||
|
|
||||||
|
background: hsla(24, 20%, 50%,.08);
|
||||||
|
background: linear-gradient(to right, hsla(24, 20%, 50%,.1) 70%, hsla(24, 20%, 50%,0));
|
||||||
|
|
||||||
|
pointer-events: none;
|
||||||
|
|
||||||
|
line-height: inherit;
|
||||||
|
white-space: pre;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
.line-highlight {
|
||||||
|
/*
|
||||||
|
* This will prevent browsers from replacing the background color with white.
|
||||||
|
* It's necessary because the element is layered on top of the displayed code.
|
||||||
|
*/
|
||||||
|
-webkit-print-color-adjust: exact;
|
||||||
|
color-adjust: exact;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.line-highlight:before,
|
||||||
|
.line-highlight[data-end]:after {
|
||||||
|
content: attr(data-start);
|
||||||
|
position: absolute;
|
||||||
|
top: .4em;
|
||||||
|
left: .6em;
|
||||||
|
min-width: 1em;
|
||||||
|
padding: 0 .5em;
|
||||||
|
background-color: hsla(24, 20%, 50%,.4);
|
||||||
|
color: hsl(24, 20%, 95%);
|
||||||
|
font: bold 65%/1.5 sans-serif;
|
||||||
|
text-align: center;
|
||||||
|
vertical-align: .3em;
|
||||||
|
border-radius: 999px;
|
||||||
|
text-shadow: none;
|
||||||
|
box-shadow: 0 1px white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.line-highlight[data-end]:after {
|
||||||
|
content: attr(data-end);
|
||||||
|
top: auto;
|
||||||
|
bottom: .4em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.line-numbers .line-highlight:before,
|
||||||
|
.line-numbers .line-highlight:after {
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre[id].linkable-line-numbers span.line-numbers-rows {
|
||||||
|
pointer-events: all;
|
||||||
|
}
|
||||||
|
pre[id].linkable-line-numbers span.line-numbers-rows > span:before {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
pre[id].linkable-line-numbers span.line-numbers-rows > span:hover:before {
|
||||||
|
background-color: rgba(128, 128, 128, .2);
|
||||||
|
}
|
||||||
|
|
||||||
|
pre[class*="language-"].line-numbers {
|
||||||
|
position: relative;
|
||||||
|
padding-left: 3.8em;
|
||||||
|
counter-reset: linenumber;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre[class*="language-"].line-numbers > code {
|
||||||
|
position: relative;
|
||||||
|
white-space: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.line-numbers .line-numbers-rows {
|
||||||
|
position: absolute;
|
||||||
|
pointer-events: none;
|
||||||
|
top: 0;
|
||||||
|
font-size: 100%;
|
||||||
|
left: -3.8em;
|
||||||
|
width: 3em; /* works for line-numbers below 1000 lines */
|
||||||
|
letter-spacing: -1px;
|
||||||
|
border-right: 1px solid #999;
|
||||||
|
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.line-numbers-rows > span {
|
||||||
|
display: block;
|
||||||
|
counter-increment: linenumber;
|
||||||
|
}
|
||||||
|
|
||||||
|
.line-numbers-rows > span:before {
|
||||||
|
content: counter(linenumber);
|
||||||
|
color: #999;
|
||||||
|
display: block;
|
||||||
|
padding-right: 0.8em;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.command-line-prompt {
|
||||||
|
border-right: 1px solid #999;
|
||||||
|
display: block;
|
||||||
|
float: left;
|
||||||
|
font-size: 100%;
|
||||||
|
letter-spacing: -1px;
|
||||||
|
margin-right: 1em;
|
||||||
|
pointer-events: none;
|
||||||
|
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.command-line-prompt > span:before {
|
||||||
|
color: #999;
|
||||||
|
content: ' ';
|
||||||
|
display: block;
|
||||||
|
padding-right: 0.8em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.command-line-prompt > span[data-user]:before {
|
||||||
|
content: "[" attr(data-user) "@" attr(data-host) "] $";
|
||||||
|
}
|
||||||
|
|
||||||
|
.command-line-prompt > span[data-user="root"]:before {
|
||||||
|
content: "[" attr(data-user) "@" attr(data-host) "] #";
|
||||||
|
}
|
||||||
|
|
||||||
|
.command-line-prompt > span[data-prompt]:before {
|
||||||
|
content: attr(data-prompt);
|
||||||
|
}
|
||||||
|
|
||||||
|
div.code-toolbar {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.code-toolbar > .toolbar {
|
||||||
|
position: absolute;
|
||||||
|
top: .3em;
|
||||||
|
right: .2em;
|
||||||
|
transition: opacity 0.3s ease-in-out;
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.code-toolbar:hover > .toolbar {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Separate line b/c rules are thrown out if selector is invalid.
|
||||||
|
IE11 and old Edge versions don't support :focus-within. */
|
||||||
|
div.code-toolbar:focus-within > .toolbar {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.code-toolbar > .toolbar > .toolbar-item {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.code-toolbar > .toolbar > .toolbar-item > a {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.code-toolbar > .toolbar > .toolbar-item > button {
|
||||||
|
background: none;
|
||||||
|
border: 0;
|
||||||
|
color: inherit;
|
||||||
|
font: inherit;
|
||||||
|
line-height: normal;
|
||||||
|
overflow: visible;
|
||||||
|
padding: 0;
|
||||||
|
-webkit-user-select: none; /* for button */
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.code-toolbar > .toolbar > .toolbar-item > a,
|
||||||
|
div.code-toolbar > .toolbar > .toolbar-item > button,
|
||||||
|
div.code-toolbar > .toolbar > .toolbar-item > span {
|
||||||
|
color: #bbb;
|
||||||
|
font-size: .8em;
|
||||||
|
padding: 0 .5em;
|
||||||
|
background: #f5f2f0;
|
||||||
|
background: rgba(224, 224, 224, 0.2);
|
||||||
|
box-shadow: 0 2px 0 0 rgba(0,0,0,0.2);
|
||||||
|
border-radius: .5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.code-toolbar > .toolbar > .toolbar-item > a:hover,
|
||||||
|
div.code-toolbar > .toolbar > .toolbar-item > a:focus,
|
||||||
|
div.code-toolbar > .toolbar > .toolbar-item > button:hover,
|
||||||
|
div.code-toolbar > .toolbar > .toolbar-item > button:focus,
|
||||||
|
div.code-toolbar > .toolbar > .toolbar-item > span:hover,
|
||||||
|
div.code-toolbar > .toolbar > .toolbar-item > span:focus {
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
@import "variables";
|
||||||
|
|
||||||
|
@import "font";
|
||||||
|
@import "buttons";
|
||||||
|
@import "form";
|
||||||
|
|
||||||
|
@import "header";
|
||||||
|
@import "menu";
|
||||||
|
@import "logo";
|
||||||
|
@import "main";
|
||||||
|
@import "post";
|
||||||
|
@import "pagination";
|
||||||
|
@import "footer";
|
||||||
|
|
||||||
|
@import "prism";
|
||||||
|
@import "syntax";
|
||||||
|
@import "code";
|
||||||
|
@import "terms";
|
||||||
|
@import "gist";
|
|
@ -0,0 +1,153 @@
|
||||||
|
code.language-css,
|
||||||
|
code.language-scss,
|
||||||
|
.token.boolean,
|
||||||
|
.token.string,
|
||||||
|
.token.entity,
|
||||||
|
.token.url,
|
||||||
|
.language-css .token.string,
|
||||||
|
.language-scss .token.string,
|
||||||
|
.style .token.string,
|
||||||
|
.token.attr-value,
|
||||||
|
.token.keyword,
|
||||||
|
.token.control,
|
||||||
|
.token.directive,
|
||||||
|
.token.statement,
|
||||||
|
.token.regex,
|
||||||
|
.token.atrule,
|
||||||
|
.token.number,
|
||||||
|
.token.inserted,
|
||||||
|
.token.important {
|
||||||
|
color: $accent !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.tag-id,
|
||||||
|
.token.atrule-id,
|
||||||
|
.token.operator,
|
||||||
|
.token.unit,
|
||||||
|
.token.placeholder,
|
||||||
|
.token.variable,
|
||||||
|
.token.tag,
|
||||||
|
.token.attr-name,
|
||||||
|
.token.namespace,
|
||||||
|
.token.deleted,
|
||||||
|
.token.property,
|
||||||
|
.token.class-name,
|
||||||
|
.token.constant,
|
||||||
|
.token.symbol {
|
||||||
|
color: transparentize($accent, .3) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.property,
|
||||||
|
.token.function,
|
||||||
|
.token.function-name,
|
||||||
|
.token.deleted,
|
||||||
|
code.language-javascript,
|
||||||
|
code.language-html,
|
||||||
|
.command-line-prompt > span:before {
|
||||||
|
color: mix($accent, #999, .9) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.selector,
|
||||||
|
.token.tag,
|
||||||
|
.token.punctuation {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.comment,
|
||||||
|
.token.prolog,
|
||||||
|
.token.doctype,
|
||||||
|
.token.cdata {
|
||||||
|
color: rgba(255, 255, 255, .3) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.namespace {
|
||||||
|
opacity: .7 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre[data-line] {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre[class*="language-"] {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.line-highlight {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
background: transparentize(mix($accent, #999, 90%), .92);
|
||||||
|
pointer-events: none;
|
||||||
|
line-height: inherit;
|
||||||
|
white-space: pre;
|
||||||
|
}
|
||||||
|
|
||||||
|
.line-highlight:before,
|
||||||
|
.line-highlight[data-end]:after {
|
||||||
|
content: attr(data-start);
|
||||||
|
position: absolute;
|
||||||
|
/* top: .4em; */
|
||||||
|
left: .6em;
|
||||||
|
min-width: 1em;
|
||||||
|
padding: 0 .5em;
|
||||||
|
background-color: hsla(24, 20%, 50%, .4);
|
||||||
|
color: hsl(24, 20%, 95%);
|
||||||
|
font: bold 65%/1.5 sans-serif;
|
||||||
|
text-align: center;
|
||||||
|
vertical-align: .3em;
|
||||||
|
border-radius: 999px;
|
||||||
|
text-shadow: none;
|
||||||
|
box-shadow: 0 1px white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.line-highlight[data-end]:after {
|
||||||
|
content: attr(data-end);
|
||||||
|
top: auto;
|
||||||
|
bottom: .4em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.line-numbers .line-highlight:before,
|
||||||
|
.line-numbers .line-highlight:after {
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-toolbar {
|
||||||
|
$code-margin: 40px;
|
||||||
|
position: relative;
|
||||||
|
margin: $code-margin 0;
|
||||||
|
padding: 20px;
|
||||||
|
border: 1px solid rgba(255, 255, 255, .1);
|
||||||
|
|
||||||
|
+ .code-toolbar,
|
||||||
|
+ .highlight,
|
||||||
|
+ .highlight .code-toolbar {
|
||||||
|
border-top: 0;
|
||||||
|
margin-top: calc(-1 * $code-margin);
|
||||||
|
}
|
||||||
|
|
||||||
|
pre, code {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
display: block;
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
> .toolbar {
|
||||||
|
button {
|
||||||
|
font-size: .8em !important;
|
||||||
|
background: hsla(0,0%,87.8%,.2) !important;
|
||||||
|
color: #bbb !important;
|
||||||
|
box-shadow: 0 2px 0 0 rgba(0,0,0,.2) !important;
|
||||||
|
border-radius: 0 !important;
|
||||||
|
margin: 6px !important;
|
||||||
|
padding: 10px !important;
|
||||||
|
user-select:none
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
.terms {
|
||||||
|
h1 {
|
||||||
|
color: $accent;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: initial;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
/* COLOR VARIABLES */
|
||||||
|
$background: mix($accent, #1D1E28, 2%);
|
||||||
|
$color: white;
|
||||||
|
$border-color: rgba(255, 255, 255, .1);
|
||||||
|
|
||||||
|
/* MEDIA QUERIES */
|
||||||
|
$phone: "max-width: 684px";
|
||||||
|
$tablet: "max-width: 900px";
|
||||||
|
|
||||||
|
/* variables for js, must be the same as these in @custom-media queries */
|
||||||
|
:root {
|
||||||
|
--phoneWidth: (max-width: 684px);
|
||||||
|
--tabletWidth: (max-width: 900px);
|
||||||
|
}
|
|
@ -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());
|
||||||
|
});
|
|
@ -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,
|
||||||
|
};
|
||||||
|
};
|
|
@ -0,0 +1,4 @@
|
||||||
|
[module]
|
||||||
|
[module.hugoVersion]
|
||||||
|
extended = true
|
||||||
|
min = '0.90.0'
|
|
@ -0,0 +1,35 @@
|
||||||
|
baseurl = "https://example.com/"
|
||||||
|
languageCode = "en-us"
|
||||||
|
theme = "hugo-theme-terminal"
|
||||||
|
paginate = 5
|
||||||
|
|
||||||
|
[params]
|
||||||
|
contentTypeName = "posts"
|
||||||
|
themeColor = "orange"
|
||||||
|
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"
|
|
@ -0,0 +1,22 @@
|
||||||
|
+++
|
||||||
|
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:
|
||||||
|
|
||||||
|
- **5 duotone themes**, depending on your preferences (orange, red, blue, green, pink)
|
||||||
|
- [**Fira Code**](https://github.com/tonsky/FiraCode) as default monospaced font. It's gorgeous!
|
||||||
|
- **really nice, custom duotone** syntax highlighting based on [**PrismJS**](https://prismjs.com)
|
||||||
|
- mobile friendly layout
|
||||||
|
|
||||||
|
So, there you have it... enjoy!
|
|
@ -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.
|
|
@ -0,0 +1,84 @@
|
||||||
|
---
|
||||||
|
title: "Showcase"
|
||||||
|
date: "2018-07-18"
|
||||||
|
author: "Hello Robot"
|
||||||
|
---
|
||||||
|
|
||||||
|
## Header 2
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
### Header 3
|
||||||
|
|
||||||
|
Nulla libero turpis, lacinia vitae cursus ut, auctor dictum nisl. Fusce varius felis nec sem ullamcorper, at convallis nisi vestibulum. Duis risus odio, porta sit amet placerat mollis, tincidunt non mauris. Suspendisse fringilla, `odio a dignissim pharetra`, est urna sollicitudin urna, eu scelerisque magna ex vitae tellus.
|
||||||
|
|
||||||
|
```css
|
||||||
|
/* PostCSS code */
|
||||||
|
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
```js
|
||||||
|
// JS code
|
||||||
|
|
||||||
|
const menuTrigger = document.querySelector('.menu-trigger')
|
||||||
|
const menu = document.querySelector('.menu')
|
||||||
|
const mobileQuery = getComputedStyle(document.body).getPropertyValue('--phoneWidth')
|
||||||
|
const isMobile = () => window.matchMedia(mobileQuery).matches
|
||||||
|
const isMobileMenu = () => {
|
||||||
|
menuTrigger.classList.toggle('hidden', !isMobile())
|
||||||
|
menu.classList.toggle('hidden', isMobile())
|
||||||
|
}
|
||||||
|
|
||||||
|
isMobileMenu()
|
||||||
|
|
||||||
|
menuTrigger.addEventListener('click', () => menu.classList.toggle('hidden'))
|
||||||
|
|
||||||
|
window.addEventListener('resize', isMobileMenu)
|
||||||
|
```
|
||||||
|
|
||||||
|
```html
|
||||||
|
<!-- HTML code -->
|
||||||
|
|
||||||
|
<section id="main">
|
||||||
|
<div>
|
||||||
|
<h1 id="title">{{ .Title }}</h1>
|
||||||
|
{{ range .Pages }}
|
||||||
|
{{ .Render "summary"}}
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Header 4
|
||||||
|
|
||||||
|
Curabitur scelerisque felis viverra varius scelerisque. Ut enim libero, molestie gravida blandit at, mollis ornare tellus. Cras arcu mi, ultrices vel pulvinar vel, volutpat eu tortor. Nullam nec eros quis massa ultrices iaculis sed in metus. Praesent sollicitudin sem sit amet orci tempor gravida.
|
||||||
|
|
||||||
|
- Maecenas elementum vitae nibh vitae porttitor.
|
||||||
|
- Aenean consequat, risus ut cursus placerat, arcu nulla sodales risus, ut molestie tellus tellus et dui.
|
||||||
|
- Integer imperdiet turpis vitae lacus imperdiet, ut ornare ligula auctor. Integer in mi eu velit vehicula suscipit eget vulputate nulla.
|
||||||
|
- Etiam vitae enim quis velit lobortis placerat a ut sem.
|
||||||
|
- Curabitur lobortis ante sit amet orci pulvinar, sollicitudin viverra nunc accumsan.
|
||||||
|
- Praesent fermentum orci quis leo facilisis posuere.
|
||||||
|
|
||||||
|
Aliquam erat volutpat. In hac habitasse platea dictumst. Nunc ut tincidunt mauris. Sed at gravida risus, id semper magna. Nullam vitae enim mattis, sodales neque non, pharetra elit. Cras sit amet sagittis augue, et finibus turpis. Ut tempus tincidunt diam vel pharetra. Nulla porttitor odio sit amet nulla scelerisque, quis aliquam mi imperdiet. Sed tincidunt dui vel tellus vestibulum rhoncus. Donec tempus ultrices velit.
|
After Width: | Height: | Size: 76 KiB |
|
@ -0,0 +1,3 @@
|
||||||
|
module github.com/panr/hugo-theme-terminal/v3
|
||||||
|
|
||||||
|
go 1.19
|
After Width: | Height: | Size: 438 KiB |
After Width: | Height: | Size: 168 KiB |
|
@ -0,0 +1,10 @@
|
||||||
|
{{ define "main" }}
|
||||||
|
<div class="post">
|
||||||
|
<h1 class="post-title">404 — {{ $.Site.Params.missingContentMessage | default "Page not found..." }}</h1>
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<a href="{{ "/" | absURL }}">{{ $.Site.Params.missingBackButtonLabel | default "Back to home page" }} →</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
|
@ -0,0 +1,27 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="{{ $.Site.Language }}">
|
||||||
|
<head>
|
||||||
|
{{ block "title" . }}
|
||||||
|
<title>{{ if .IsHome }}{{ $.Site.Title }}{{ else }}{{ .Title }} :: {{ $.Site.Title }}{{ end }}</title>
|
||||||
|
{{ end }}
|
||||||
|
{{ partial "head.html" . }}
|
||||||
|
</head>
|
||||||
|
<body class="{{- ( or .Params.color $.Site.Params.ThemeColor ) -}}">
|
||||||
|
{{ $container := cond ($.Site.Params.FullWidthTheme | default false) "container full" (cond ($.Site.Params.CenterTheme | default false) "container center" "container") }}
|
||||||
|
|
||||||
|
<div class="{{- $container -}}{{- cond ($.Site.Params.oneHeadingSize | default true) " headings--one-size" "" }}">
|
||||||
|
|
||||||
|
{{ partial "header.html" . }}
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
{{ block "main" . }}
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ block "footer" . }}
|
||||||
|
{{ partial "footer.html" . }}
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,66 @@
|
||||||
|
{{ define "main" }}
|
||||||
|
{{ if .Content }}
|
||||||
|
<div class="index-content {{ if .Params.framed -}}framed{{- end -}}">
|
||||||
|
{{ .Content }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
<div class="posts">
|
||||||
|
{{ $isntDefault := not (or (eq (trim $.Site.Params.contentTypeName " ") "posts") (eq (trim $.Site.Params.contentTypeName " ") "")) }}
|
||||||
|
{{ $contentTypeName := cond $isntDefault (string $.Site.Params.contentTypeName) "posts" }}
|
||||||
|
|
||||||
|
{{ $PageContext := . }}
|
||||||
|
{{ if .IsHome }}
|
||||||
|
{{ $PageContext = .Site }}
|
||||||
|
{{ end }}
|
||||||
|
{{ $paginator := .Paginate (where $PageContext.RegularPages "Type" $contentTypeName) }}
|
||||||
|
|
||||||
|
{{ range $paginator.Pages }}
|
||||||
|
<article class="post on-list">
|
||||||
|
<h1 class="post-title">
|
||||||
|
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
<div class="post-meta">
|
||||||
|
{{ if .Date }}
|
||||||
|
<time class="post-date">
|
||||||
|
{{ .Date.Format "2006-01-02" }} ::
|
||||||
|
</time>
|
||||||
|
{{ end }}
|
||||||
|
{{ with .Params.Author }}
|
||||||
|
<span class="post-author">{{ . }}</span>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ if .Params.tags }}
|
||||||
|
<span class="post-tags">
|
||||||
|
{{ range .Params.tags }}
|
||||||
|
#<a href="{{ (urlize (printf "tags/%s/" . )) | absLangURL }}">
|
||||||
|
{{- . -}}
|
||||||
|
</a>
|
||||||
|
{{ end }}
|
||||||
|
</span>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ partial "cover.html" . }}
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
{{ if .Params.showFullContent }}
|
||||||
|
{{ .Content }}
|
||||||
|
{{ else if .Description }}
|
||||||
|
{{ .Description | markdownify }}
|
||||||
|
{{ else }}
|
||||||
|
{{ .Summary }}
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ if not .Params.showFullContent }}
|
||||||
|
<div>
|
||||||
|
<a class="read-more button" href="{{.RelPermalink}}">{{ $.Site.Params.ReadMore }} →</a>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
</article>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ partial "pagination.html" . }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
|
@ -0,0 +1,56 @@
|
||||||
|
{{ define "main" }}
|
||||||
|
{{ with .Content }}
|
||||||
|
<div class="index-content">
|
||||||
|
{{ . }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
<div class="posts">
|
||||||
|
{{ range .Paginator.Pages }}
|
||||||
|
<article class="post on-list">
|
||||||
|
<h1 class="post-title">
|
||||||
|
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
||||||
|
</h1>
|
||||||
|
<div class="post-meta">
|
||||||
|
{{ if .Date }}
|
||||||
|
<time class="post-date">
|
||||||
|
{{ .Date.Format "2006-01-02" }} ::
|
||||||
|
</time>
|
||||||
|
{{ end }}
|
||||||
|
{{ with .Params.Author }}
|
||||||
|
<span class="post-author">{{ . }}</span>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ if .Params.tags }}
|
||||||
|
<span class="post-tags">
|
||||||
|
{{ range .Params.tags }}
|
||||||
|
#<a href="{{ (urlize (printf "tags/%s/" . )) | absLangURL }}">
|
||||||
|
{{- . -}}
|
||||||
|
</a>
|
||||||
|
{{ end }}
|
||||||
|
</span>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ partial "cover.html" . }}
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
{{ if .Params.showFullContent }}
|
||||||
|
{{ .Content }}
|
||||||
|
{{ else if .Description }}
|
||||||
|
{{ .Description | markdownify }}
|
||||||
|
{{ else }}
|
||||||
|
{{ .Summary }}
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ if not .Params.showFullContent }}
|
||||||
|
<div>
|
||||||
|
<a class="read-more button" href="{{.RelPermalink}}">{{ $.Site.Params.ReadMore }} →</a>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
</article>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ partial "pagination.html" . }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
|
@ -0,0 +1,40 @@
|
||||||
|
{{- $pctx := . -}}
|
||||||
|
{{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}}
|
||||||
|
{{- $pages := slice -}}
|
||||||
|
{{- if or $.IsHome $.IsSection -}}
|
||||||
|
{{- $pages = $pctx.RegularPages -}}
|
||||||
|
{{- else -}}
|
||||||
|
{{- $pages = $pctx.Pages -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- $limit := .Site.Config.Services.RSS.Limit -}}
|
||||||
|
{{- if ge $limit 1 -}}
|
||||||
|
{{- $pages = $pages | first $limit -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title>
|
||||||
|
<link>{{ .Permalink }}</link>
|
||||||
|
<description>Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }}</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator>{{ with .Site.LanguageCode }}
|
||||||
|
<language>{{.}}</language>{{end}}{{ with .Site.Author.email }}
|
||||||
|
<managingEditor>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}{{ with .Site.Author.email }}
|
||||||
|
<webMaster>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</webMaster>{{end}}{{ with .Site.Copyright }}
|
||||||
|
<copyright>{{.}}</copyright>{{end}}{{ if not .Date.IsZero }}
|
||||||
|
<lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>{{ end }}
|
||||||
|
{{- with .OutputFormats.Get "RSS" -}}
|
||||||
|
{{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }}
|
||||||
|
{{- end -}}
|
||||||
|
{{ range $pages }}
|
||||||
|
<item>
|
||||||
|
<title>{{ .Title }}</title>
|
||||||
|
<link>{{ .Permalink }}</link>
|
||||||
|
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
|
||||||
|
{{ with .Site.Author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
|
||||||
|
<guid>{{ .Permalink }}</guid>
|
||||||
|
<description>{{ .Summary | html }}</description>
|
||||||
|
<content>{{ .Content | html }}</content>
|
||||||
|
</item>
|
||||||
|
{{ end }}
|
||||||
|
</channel>
|
||||||
|
</rss>
|
|
@ -0,0 +1,57 @@
|
||||||
|
{{ define "main" }}
|
||||||
|
<article class="post">
|
||||||
|
<h1 class="post-title">
|
||||||
|
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
||||||
|
</h1>
|
||||||
|
<div class="post-meta">
|
||||||
|
{{ if .Date }}
|
||||||
|
<time class="post-date">
|
||||||
|
{{ .Date.Format "2006-01-02" }} ::
|
||||||
|
{{ if $.Site.Params.showLastUpdated }}
|
||||||
|
[{{or $.Site.Params.updatedDatePrefix "Updated"}} :: {{ .Lastmod.Format "2006-01-02" }}]
|
||||||
|
{{ end }}
|
||||||
|
</time>
|
||||||
|
{{ end }}
|
||||||
|
{{ with .Params.Author }}
|
||||||
|
<span class="post-author">{{ . }}</span>
|
||||||
|
{{ end }}
|
||||||
|
{{ if and (.Param "readingTime") (eq (.Param "readingTime") true) }}
|
||||||
|
<span class="post-reading-time">:: {{ .ReadingTime }} {{ $.Site.Params.minuteReadingTime | default "min read" }} ({{ .WordCount }} {{ $.Site.Params.words | default "words" }})</span>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ if .Params.tags }}
|
||||||
|
<span class="post-tags">
|
||||||
|
{{ range .Params.tags }}
|
||||||
|
#<a href="{{ (urlize (printf "tags/%s/" .)) | absLangURL }}">{{ . }}</a>
|
||||||
|
{{ end }}
|
||||||
|
</span>
|
||||||
|
{{ end }}
|
||||||
|
{{ partial "cover.html" . }}
|
||||||
|
|
||||||
|
{{ if (.Params.Toc | default .Site.Params.Toc) }}
|
||||||
|
<div class="table-of-contents">
|
||||||
|
<h2>
|
||||||
|
{{ (.Params.TocTitle | default .Site.Params.TocTitle) | default "Table of Contents" }}
|
||||||
|
</h2>
|
||||||
|
{{ .TableOfContents }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
{{- with .Content -}}
|
||||||
|
<div>
|
||||||
|
{{ . | replaceRE "(<h[1-9] id=\"([^\"]+)\".+)(</h[1-9]+>)" `${1}<a href="#${2}" class="hanchor" ariaLabel="Anchor">⌗</a> ${3}` | safeHTML }}
|
||||||
|
</div>
|
||||||
|
{{- end -}}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ if eq .Type $.Site.Params.contentTypeName }}
|
||||||
|
{{ partial "posts_pagination.html" . }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ if not (.Params.hideComments | default false) }}
|
||||||
|
{{ partial "comments.html" . }}
|
||||||
|
{{ end }}
|
||||||
|
</article>
|
||||||
|
{{ end }}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{{ define "main" }}
|
||||||
|
<div class="terms">
|
||||||
|
<h1>{{ .Title }}</h1>
|
||||||
|
<ul>
|
||||||
|
{{ $type := .Type }}
|
||||||
|
{{ range $key, $value := .Data.Terms.Alphabetical }}
|
||||||
|
{{ $name := .Name }}
|
||||||
|
{{ $count := .Count }}
|
||||||
|
{{ with $.Site.GetPage (printf "/%s/%s" $type $name) }}
|
||||||
|
<li>
|
||||||
|
<a class="terms-title" href="{{ .Permalink }}">{{ .Name }} ({{ $count }})</a>
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
|
@ -0,0 +1,8 @@
|
||||||
|
<!--
|
||||||
|
To add comments section, please create `layouts/partials/comments.html` in your
|
||||||
|
Hugo directory and insert:
|
||||||
|
|
||||||
|
{{ template "_internal/disqus.html" . }}
|
||||||
|
|
||||||
|
or whatever comment engine you want -> https://gohugo.io/content-management/comments/#readout
|
||||||
|
-->
|
|
@ -0,0 +1,24 @@
|
||||||
|
{{- $cover := false -}}
|
||||||
|
{{- $autoCover := default $.Site.Params.autoCover false }}
|
||||||
|
|
||||||
|
{{- if index .Params "cover" -}}
|
||||||
|
{{- if .Resources.GetMatch .Params.Cover }}
|
||||||
|
{{- $cover = (.Resources.GetMatch .Params.Cover).RelPermalink -}}
|
||||||
|
{{- else -}}
|
||||||
|
{{- $cover = absURL .Params.Cover -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- else if $.Site.Params.AutoCover -}}
|
||||||
|
{{- if (not .Params.Cover) -}}
|
||||||
|
{{- if .Resources.GetMatch "cover.*" -}}
|
||||||
|
{{- $cover = (.Resources.GetMatch "cover.*").RelPermalink -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{if $cover -}}
|
||||||
|
<!-- Cover image found -->
|
||||||
|
<img src="{{ $cover }}"
|
||||||
|
class="post-cover"
|
||||||
|
alt="{{ .Title | plainify | default " " }}"
|
||||||
|
title="{{ .Params.CoverCredit |plainify|default "Cover Image" }}" />
|
||||||
|
{{- end }}
|
|
@ -0,0 +1,4 @@
|
||||||
|
<!--
|
||||||
|
To add an extended footer section, please create
|
||||||
|
`layouts/partials/extended_footer.html` in your Hugo directory.
|
||||||
|
-->
|
|
@ -0,0 +1,4 @@
|
||||||
|
<!--
|
||||||
|
To add an extended head section, please create
|
||||||
|
`layouts/partials/extended_head.html` in your Hugo directory.
|
||||||
|
-->
|
|
@ -0,0 +1,35 @@
|
||||||
|
<footer class="footer">
|
||||||
|
<div class="footer__inner">
|
||||||
|
<div class="copyright">
|
||||||
|
<span>© {{ now.Year }} Johannes Bülow :: Powered by <a href="http://gohugo.io">Hugo</a></span>
|
||||||
|
<span> :: Theme made by <a href="https://github.com/panr/hugo-theme-terminal">panr</a></span>
|
||||||
|
<span> :: <a href="/impressum/index.html">Impressum</a></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
{{ $menu := resources.Get "js/menu.js" | js.Build }}
|
||||||
|
{{ $prism := resources.Get "js/prism.js" | js.Build }}
|
||||||
|
|
||||||
|
{{ $bundle := slice $menu $prism | resources.Concat "bundle.js" | resources.Minify }}
|
||||||
|
|
||||||
|
<script type="text/javascript" src="{{ $bundle.RelPermalink }}"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
document.addEventListener("DOMContentLoaded", function () {
|
||||||
|
/* do not run if browser lacks the antifeature */
|
||||||
|
if (navigator.getEnvironmentIntegrity === undefined)
|
||||||
|
return;
|
||||||
|
const disclaimerContent = `
|
||||||
|
<p>Your browser contains Google DRM. "Web Environment Integrity" is a Google euphemism for a DRM that is designed to prevent ad-blocking. In support of an open web, please install a browser such as <a href="https://www.mozilla.org/en-US/firefox/new/">Firefox</a> that respects your freedom and supports ad blockers.</p>
|
||||||
|
`;
|
||||||
|
|
||||||
|
// Get the container element by its ID
|
||||||
|
const container = document.getElementById("disclaimer-container");
|
||||||
|
|
||||||
|
// Insert the disclaimer content into the container
|
||||||
|
container.innerHTML = disclaimerContent;
|
||||||
|
}, false);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!-- Extended footer section-->
|
||||||
|
{{ partial "extended_footer.html" . }}
|
|
@ -0,0 +1,93 @@
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta name="description" content="{{ if .IsHome }}{{ $.Site.Params.Subtitle }}{{ else if .Description}}{{ .Description | plainify }}{{ else }}{{ .Summary | plainify }}{{ end }}" />
|
||||||
|
<meta name="keywords" content="{{ with .Params.Keywords }}{{ delimit . ", " }}{{ else }}{{ $.Site.Params.Keywords }}{{ end }}" />
|
||||||
|
<meta name="robots" content="noodp" />
|
||||||
|
{{ if .Params.noindex }}
|
||||||
|
{{ if or (eq (.Param "noindex") true) (eq (.Param "noindex") "true") }}
|
||||||
|
<meta name="robots" content="noindex" />
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
<link rel="canonical" href="{{ .Permalink }}" />
|
||||||
|
|
||||||
|
{{ template "_internal/google_analytics.html" . }}
|
||||||
|
|
||||||
|
{{ $defaultStyles := resources.Get "css/style.scss" }}
|
||||||
|
<!-- Local Theme Variables -->
|
||||||
|
{{ if and (isset .Params "color") (not (eq .Params.color "")) }}
|
||||||
|
{{ $localColorCss := resources.Get (printf "css/color/%s.scss" .Params.color) }}
|
||||||
|
{{ $localCss := slice $localColorCss $defaultStyles | resources.Concat (printf "css/%s-local.scss" .Params.color) }}
|
||||||
|
{{ $localColorStyles := $localCss | resources.ToCSS }}
|
||||||
|
<link rel="stylesheet" href="{{ $localColorStyles.Permalink }}">
|
||||||
|
{{ else }}
|
||||||
|
<!-- Theme Variables -->
|
||||||
|
{{ $colorCss := resources.Get (printf "css/color/%s.scss" ($.Site.Params.ThemeColor | default "orange")) }}
|
||||||
|
{{ $css := slice $colorCss $defaultStyles | resources.Concat "css/base.scss" }}
|
||||||
|
{{ $options := (dict "targetPath" "styles.css" "outputStyle" "compressed" "enableSourceMap" true "precision" 6 "includePaths" (slice "node_modules")) }}
|
||||||
|
{{ $styles := $css | resources.ToCSS $options }}
|
||||||
|
<link rel="stylesheet" href="{{ $styles.Permalink }}">
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
<!-- Custom CSS to override theme properties (/static/style.css) -->
|
||||||
|
{{ if (fileExists "static/style.css") -}}
|
||||||
|
<link rel="stylesheet" href="{{ "style.css" | absURL }}">
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
<!-- Icons -->
|
||||||
|
{{ if isset $.Site.Params "favicon" }}
|
||||||
|
<link rel="shortcut icon" href="{{ $.Site.Params.favicon | absURL }}">
|
||||||
|
{{ else }}
|
||||||
|
<link rel="shortcut icon" href="{{ printf "img/theme-colors/%s.png" (or .Params.color $.Site.Params.ThemeColor | default "orange") | absURL }}">
|
||||||
|
<link rel="apple-touch-icon" href="{{ printf "img/theme-colors/%s.png" (or .Params.color $.Site.Params.ThemeColor | default "orange") | absURL }}">
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
<!-- Twitter Card -->
|
||||||
|
<meta name="twitter:card" content="summary" />
|
||||||
|
{{ if (isset $.Site.Params "twitter") }}
|
||||||
|
{{ if (isset $.Site.Params.Twitter "site") }}
|
||||||
|
<meta name="twitter:site" content="{{ $.Site.Params.Twitter.site }}" />
|
||||||
|
{{ end }}
|
||||||
|
<meta name="twitter:creator" content="{{ if .IsHome }}{{ $.Site.Params.Twitter.creator }}{{ else if isset .Params "authortwitter" }}{{ .Params.authorTwitter }}{{ else }}{{ .Params.Author }}{{ end }}" />
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
<!-- OG data -->
|
||||||
|
<meta property="og:locale" content="{{ $.Site.Language.Lang }}" />
|
||||||
|
<meta property="og:type" content="{{ if .IsPage }}article{{ else }}website{{ end }}" />
|
||||||
|
<meta property="og:title" content="{{ if .IsHome }}{{ $.Site.Title }}{{ else }}{{ .Title }}{{ end }}">
|
||||||
|
<meta property="og:description" content="{{ if .IsHome }}{{ $.Site.Params.Subtitle }}{{ else if .Description}}{{ .Description | plainify }}{{ else }}{{ .Summary | plainify }}{{ end }}" />
|
||||||
|
<meta property="og:url" content="{{ .Permalink }}" />
|
||||||
|
<meta property="og:site_name" content="{{ $.Site.Title }}" />
|
||||||
|
{{ if (isset .Params "cover") }}
|
||||||
|
{{ $pageCover := .Param "cover" }}
|
||||||
|
{{ with (.Resources.GetMatch (.Param "cover")) }}
|
||||||
|
{{ $pageCover = .RelPermalink }}
|
||||||
|
{{ end }}
|
||||||
|
<meta property="og:image" content="{{ $pageCover | absURL }}">
|
||||||
|
{{ else }}
|
||||||
|
{{ if isset $.Site.Params "favicon" }}
|
||||||
|
<meta property="og:image" content="{{ $.Site.Params.favicon | absURL }}">
|
||||||
|
{{ else }}
|
||||||
|
<meta property="og:image" content="{{ printf "img/favicon/%s.png" $.Site.Params.ThemeColor | absURL }}">
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
<meta property="og:image:width" content="1200">
|
||||||
|
<meta property="og:image:height" content="627">
|
||||||
|
{{ range .Params.categories }}
|
||||||
|
<meta property="article:section" content="{{ . }}" />
|
||||||
|
{{ end }}
|
||||||
|
{{ if isset .Params "date" }}
|
||||||
|
<meta property="article:published_time" content="{{ time .Date }}" />
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
<!-- RSS -->
|
||||||
|
{{ with .OutputFormats.Get "RSS" }}
|
||||||
|
<link href="{{ .RelPermalink }}" rel="alternate" type="application/rss+xml" title="{{ $.Site.Title }}" />
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
<!-- JSON Feed -->
|
||||||
|
{{ with .OutputFormats.Get "json" }}
|
||||||
|
<link href="{{ .RelPermalink }}" rel="alternate" type="application/json" title="{{ $.Site.Title }}" />
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
<!-- Extended head section-->
|
||||||
|
{{ partial "extended_head.html" . }}
|
|
@ -0,0 +1,24 @@
|
||||||
|
<header class="header">
|
||||||
|
<div id="disclaimer-container" style="position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
background-color: #8B0000;
|
||||||
|
text-align: center;
|
||||||
|
border-bottom: 1px solid #ccc;
|
||||||
|
font-size: 14px;"></div>
|
||||||
|
<div class="header__inner">
|
||||||
|
<div class="header__logo">
|
||||||
|
{{ partial "logo.html" . }}
|
||||||
|
</div>
|
||||||
|
{{ if len $.Site.Menus }}
|
||||||
|
{{ partial "mobile-menu.html" . }}
|
||||||
|
{{ end }}
|
||||||
|
{{ if and $.Site.Params.showLanguageSelector (len $.Site.Home.AllTranslations) }}
|
||||||
|
{{ partial "language-menu.html" . }}
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
{{ if len $.Site.Menus }}
|
||||||
|
{{ partial "menu.html" . }}
|
||||||
|
{{ end }}
|
||||||
|
</header>
|
|
@ -0,0 +1,10 @@
|
||||||
|
<ul class="menu menu--desktop menu--language-selector">
|
||||||
|
<li class="menu__trigger">{{ .Language.LanguageName }} ▾</li>
|
||||||
|
<li>
|
||||||
|
<ul class="menu__dropdown">
|
||||||
|
{{ range $.Site.Home.AllTranslations }}
|
||||||
|
<li><a href="{{ .Permalink }}">{{ .Language.LanguageName }}</a></li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
|
@ -0,0 +1,5 @@
|
||||||
|
<a href="{{ if $.Site.Params.Logo.LogoHomeLink }}{{ $.Site.Params.Logo.LogoHomeLink }}{{else}}{{ $.Site.BaseURL }}{{ end }}">
|
||||||
|
<div class="logo">
|
||||||
|
{{ with $.Site.Params.Logo.logoText }}{{ . }}{{ else }}Terminal{{ end }}
|
||||||
|
</div>
|
||||||
|
</a>
|
|
@ -0,0 +1,33 @@
|
||||||
|
<nav class="navigation-menu">
|
||||||
|
<ul class="navigation-menu__inner menu--desktop">
|
||||||
|
{{ if or $.Site.Params.showMenuItems ( eq .Site.Params.showMenuItems 0 ) }}
|
||||||
|
{{ range first $.Site.Params.showMenuItems $.Site.Menus.main }}
|
||||||
|
{{ if not .HasChildren }}
|
||||||
|
<li><a href="{{ .URL }}">{{ .Name }}</a></li>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ if gt (len $.Site.Menus.main) $.Site.Params.showMenuItems }}
|
||||||
|
<li>
|
||||||
|
<ul class="menu">
|
||||||
|
<li class="menu__trigger">{{ $.Site.Params.MenuMore }} ▾</li>
|
||||||
|
<li>
|
||||||
|
<ul class="menu__dropdown">
|
||||||
|
{{ range last (sub (len $.Site.Menus.main) $.Site.Params.showMenuItems) $.Site.Menus.main }}
|
||||||
|
{{ if not .HasChildren }}
|
||||||
|
<li><a href="{{ .URL }}">{{ .Name }}</a></li>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
|
{{ else }}
|
||||||
|
{{ range $.Site.Menus.main }}
|
||||||
|
{{ if not .HasChildren }}
|
||||||
|
<li><a href="{{ .URL }}">{{ .Name }}</a></li>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</nav>
|
|
@ -0,0 +1,20 @@
|
||||||
|
<ul class="menu menu--mobile">
|
||||||
|
<li class="menu__trigger">Menu ▾</li>
|
||||||
|
<li>
|
||||||
|
<ul class="menu__dropdown">
|
||||||
|
{{ range $.Site.Menus.main }}
|
||||||
|
{{ if not .HasChildren }}
|
||||||
|
<li><a href="{{ .URL }}">{{ .Name }}</a></li>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ if and $.Site.Params.showLanguageSelector (len $.Site.Home.AllTranslations) }}
|
||||||
|
<hr />
|
||||||
|
{{ range $.Site.Home.AllTranslations }}
|
||||||
|
<li>
|
||||||
|
<a href="{{ .Permalink }}">{{ .Language.LanguageName }}</a>
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
|
@ -0,0 +1,16 @@
|
||||||
|
<div class="pagination">
|
||||||
|
<div class="pagination__buttons">
|
||||||
|
{{ if .Paginator.HasPrev }}
|
||||||
|
<a href="{{ .Paginator.Prev.URL }}" class="button previous">
|
||||||
|
<span class="button__icon">←</span>
|
||||||
|
<span class="button__text">{{ $.Site.Params.newerPosts | default "Newer posts" }}</span>
|
||||||
|
</a>
|
||||||
|
{{ end }}
|
||||||
|
{{ if .Paginator.HasNext }}
|
||||||
|
<a href="{{ .Paginator.Next.URL }}" class="button next">
|
||||||
|
<span class="button__text">{{ $.Site.Params.olderPosts | default "Older posts" }}</span>
|
||||||
|
<span class="button__icon">→</span>
|
||||||
|
</a>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</div>
|
|
@ -0,0 +1,26 @@
|
||||||
|
{{ if or .NextInSection .PrevInSection }}
|
||||||
|
<div class="pagination">
|
||||||
|
<div class="pagination__title">
|
||||||
|
<span class="pagination__title-h">{{ $.Site.Params.ReadOtherPosts }}</span>
|
||||||
|
<hr />
|
||||||
|
</div>
|
||||||
|
<div class="pagination__buttons">
|
||||||
|
{{ if .NextInSection }}
|
||||||
|
<span class="button previous">
|
||||||
|
<a href="{{ .NextInSection.Permalink }}">
|
||||||
|
<span class="button__icon">←</span>
|
||||||
|
<span class="button__text">{{ .NextInSection.Title }}</span>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
{{ end }}
|
||||||
|
{{ if .PrevInSection }}
|
||||||
|
<span class="button next">
|
||||||
|
<a href="{{ .PrevInSection.Permalink }}">
|
||||||
|
<span class="button__text">{{ .PrevInSection.Title }}</span>
|
||||||
|
<span class="button__icon">→</span>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
|
@ -0,0 +1,15 @@
|
||||||
|
{{ $id := delimit (shuffle (seq 1 9)) "" }}
|
||||||
|
|
||||||
|
{{ if .Get "language" }}
|
||||||
|
<div class="collapsable-code">
|
||||||
|
<input id="{{ .Get "id" | default $id }}" type="checkbox" {{ if ( eq ( .Get "isCollapsed" ) "true" ) -}} checked {{- end }} />
|
||||||
|
<label for="{{ .Get "id" | default $id }}">
|
||||||
|
<span class="collapsable-code__language">{{ .Get "language" }}</span>
|
||||||
|
{{ if .Get "title" }}<span class="collapsable-code__title">{{ .Get "title" | markdownify }}</span>{{ end }}
|
||||||
|
<span class="collapsable-code__toggle" data-label-expand="{{ .Get "expand" | default "△" }}" data-label-collapse="{{ .Get "collapse" | default "▽" }}"></span>
|
||||||
|
</label>
|
||||||
|
<pre {{ if .Get "language" }}class="language-{{ .Get "language" }}" {{ end }}><code>{{ .Inner | string }}</code></pre>
|
||||||
|
</div>
|
||||||
|
{{ else }}
|
||||||
|
{{ errorf "If you want to use the \"collapsable code\" shortcode, you need to pass a mandatory \"language\" param. The issue occured in %q (%q)" .Page.File .Page.Permalink }}
|
||||||
|
{{ end }}
|
|
@ -0,0 +1,8 @@
|
||||||
|
{{ if .Get "src" }}
|
||||||
|
<figure class="{{ with .Get "position"}}{{ . }}{{ else -}} left {{- end }}" >
|
||||||
|
<img src="{{ .Get "src" | safeURL }}" {{ with .Get "alt" }} alt="{{ . | plainify }}" {{ end }} {{ with .Get "style" }} style="{{ . | safeCSS }}" {{ end }} />
|
||||||
|
{{ if .Get "caption" }}
|
||||||
|
<figcaption class="{{ with .Get "captionPosition"}}{{ . }}{{ else -}} center {{- end }}" {{ with .Get "captionStyle" }} style="{{ . | safeCSS }}" {{ end }}>{{ .Get "caption" | safeHTML }}</figcaption>
|
||||||
|
{{ end }}
|
||||||
|
</figure>
|
||||||
|
{{ end }}
|
|
@ -0,0 +1,3 @@
|
||||||
|
{{ if .Get "src" }}
|
||||||
|
<img src="{{ .Get "src" | safeURL }}" {{ with .Get "alt" }} alt="{{ . | plainify }}" {{ end }} class="{{ with .Get "position"}}{{ . }}{{ else -}} left {{- end }}" {{ with .Get "style" }} style="{{ . | safeCSS }}" {{ end }} />
|
||||||
|
{{ end }}
|
|
@ -0,0 +1,26 @@
|
||||||
|
{{ $inner := replaceRE "^\r?\n" "" .Inner | string }}
|
||||||
|
{{ if len .Params | eq 0 }}
|
||||||
|
<pre><code>{{ $inner }}</code></pre>
|
||||||
|
{{ else }}
|
||||||
|
{{ if .IsNamedParams }}
|
||||||
|
<pre class="
|
||||||
|
{{- if .Get "lang" }}language-{{ .Get "lang" }}{{ end }}
|
||||||
|
{{- if .Get "line-numbers" }} line-numbers{{ end }}
|
||||||
|
{{- if .Get "command-line" }} command-line{{ end }}"
|
||||||
|
{{- /* line highlight plugin */ -}}
|
||||||
|
{{- if .Get "line" }} data-line="{{ .Get "line" }}"{{ end }}
|
||||||
|
{{- /* line number plugin */ -}}
|
||||||
|
{{- if .Get "start" }} data-start="{{ .Get "start" }}"{{ end }}
|
||||||
|
{{- /* command-line plugin */ -}}
|
||||||
|
{{- if .Get "user" }} data-user="{{ .Get "user" }}"{{ end }}
|
||||||
|
{{- if .Get "host" }} data-host="{{ .Get "host" }}"{{ end }}
|
||||||
|
{{- if .Get "prompt" }} data-prompt="{{ .Get "prompt" }}"{{ end }}
|
||||||
|
{{- if .Get "output" }} data-output="{{ .Get "output" }}"{{ end }}
|
||||||
|
><code {{ if .Get "lang" }}class="language-{{ .Get "lang" }}"{{ end }}
|
||||||
|
>{{ $inner }}</code></pre>
|
||||||
|
{{ else }}
|
||||||
|
<pre class="language-{{ .Get 0 }}">
|
||||||
|
<code class="language-{{ .Get 0 }}">{{ $inner }}</code>
|
||||||
|
</pre>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
|
@ -0,0 +1,39 @@
|
||||||
|
{
|
||||||
|
"author": "Radosław Kozieł <@panr> <radoslaw.koziel@gmail.com>",
|
||||||
|
"browserslist": [
|
||||||
|
"last 2 versions",
|
||||||
|
">1%",
|
||||||
|
"not dead"
|
||||||
|
],
|
||||||
|
"comments": {
|
||||||
|
"dependencies": {
|
||||||
|
"yarn": "project"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"browserslist": "project",
|
||||||
|
"clipboard": "project",
|
||||||
|
"eslint-config-airbnb": "project",
|
||||||
|
"eslint-config-prettier": "project",
|
||||||
|
"eslint-plugin-jsx-a11y": "project",
|
||||||
|
"husky": "project"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"yarn": "^1.22.10"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"browserslist": "^4.16.5",
|
||||||
|
"clipboard": "^2.0.4",
|
||||||
|
"eslint-config-airbnb": "^18.2.0",
|
||||||
|
"eslint-config-prettier": "^8.1.0",
|
||||||
|
"eslint-plugin-jsx-a11y": "^6.2.1",
|
||||||
|
"husky": "^5.1.3"
|
||||||
|
},
|
||||||
|
"license": "MIT",
|
||||||
|
"main": "index.js",
|
||||||
|
"name": "terminal",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo 'Test'"
|
||||||
|
},
|
||||||
|
"version": "2.1.0"
|
||||||
|
}
|
|
@ -0,0 +1,43 @@
|
||||||
|
{
|
||||||
|
"name": "terminal",
|
||||||
|
"version": "3.1.0",
|
||||||
|
"author": "Radosław Kozieł <@panr> <radoslaw.koziel@gmail.com>",
|
||||||
|
"main": "index.js",
|
||||||
|
"license": "MIT",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo 'Test'"
|
||||||
|
},
|
||||||
|
"browserslist": [
|
||||||
|
"last 2 versions",
|
||||||
|
">1%",
|
||||||
|
"not dead"
|
||||||
|
],
|
||||||
|
"comments": {
|
||||||
|
"dependencies": {
|
||||||
|
"yarn": "project"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"browserslist": "project",
|
||||||
|
"clipboard": "project",
|
||||||
|
"eslint-config-airbnb": "project",
|
||||||
|
"eslint-config-prettier": "project",
|
||||||
|
"eslint-plugin-jsx-a11y": "project",
|
||||||
|
"husky": "project"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"yarn": "^1.22.10"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"browserslist": "^4.16.5",
|
||||||
|
"clipboard": "^2.0.4",
|
||||||
|
"eslint": "^7.32.0",
|
||||||
|
"eslint-config-airbnb": "^18.2.0",
|
||||||
|
"eslint-config-prettier": "^8.1.0",
|
||||||
|
"eslint-plugin-jsx-a11y": "^6.2.1",
|
||||||
|
"husky": "^5.1.3",
|
||||||
|
"stylelint": "^14.14.1",
|
||||||
|
"stylelint-config-prettier-scss": "^0.0.1",
|
||||||
|
"stylelint-config-standard-scss": "^6.1.0"
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 189 B |
After Width: | Height: | Size: 190 B |
After Width: | Height: | Size: 190 B |
After Width: | Height: | Size: 190 B |
After Width: | Height: | Size: 189 B |
|
@ -0,0 +1,13 @@
|
||||||
|
name = "terminal"
|
||||||
|
license = "MIT"
|
||||||
|
licenselink = "https://github.com/panr/hugo-theme-terminal/blob/master/LICENSE.md"
|
||||||
|
description = "A simple, retro theme for Hugo."
|
||||||
|
homepage = "https://github.com/panr/hugo-theme-terminal/"
|
||||||
|
tags = ["blog", "clean", "customizable", "dark", "highlighting", "minimal", "monotone", "multilingual", "personal", "responsive", "simple", "technical", "retro"]
|
||||||
|
features = ["blog", "shortcode", "syntax highlighting"]
|
||||||
|
min_version = 0.90
|
||||||
|
|
||||||
|
[author]
|
||||||
|
name = "panr"
|
||||||
|
homepage = "https://radoslawkoziel.pl"
|
||||||
|
twitter = "https://twitter.com/panr"
|