18 Commits

Author SHA1 Message Date
b931e14ece Update theme version 2022-11-08 08:34:36 +01:00
39ba3a4ea9 Simplify menus 2022-11-08 00:34:01 +01:00
09628b6b3d Update dev dependencies 2022-11-07 18:34:28 +01:00
8b28b06e72 Fix cover param for og:image 2022-11-06 10:31:25 +01:00
3a101141d0 Fix menu layout and bring back spacer element 2022-11-06 10:05:46 +01:00
c5febe957a Fix menu layout 2022-11-06 09:16:27 +01:00
1023b03b77 Merge pull request #386 from rseabra/fix-menus
Fix menu's by properly enclosing the inner ul's into li's as it shoul…
2022-11-06 09:13:48 +01:00
45dd9bd29e Fix menu's by properly enclosing the inner ul's into li's as it should be. 2022-11-03 19:05:40 +00:00
1c93397784 Update README.md 2022-10-30 08:20:35 +01:00
6601fd0b14 Update README.md 2022-10-29 23:02:57 +02:00
4a77a89ea7 Remove comma from package.json 2022-10-28 13:24:01 +02:00
6250dca5a0 Fix media-queries for tablet and mobile 2022-10-27 16:36:28 +02:00
4d906006aa Merge pull request #382 from kylestratis/patch-2
Update USERS.md
2022-10-25 08:22:29 +02:00
c0595bfe3c Update USERS.md 2022-10-24 20:59:55 -04:00
855855cd60 Fix .Lastmod context 2022-10-24 16:31:41 +02:00
0e14937d31 Update Meta and README 2022-10-23 11:18:31 +02:00
661243194d Update README 2022-10-22 17:25:55 +02:00
628c104026 Update hugo module 2022-10-22 14:39:11 +02:00
23 changed files with 1712 additions and 2446 deletions

View File

@ -18,7 +18,7 @@ rules:
- as-needed - as-needed
semi: semi:
- 2 - 2
- never - always
class-methods-use-this: 0 class-methods-use-this: 0
comma-dangle: comma-dangle:
- 2 - 2
@ -33,7 +33,7 @@ rules:
func-names: 0 func-names: 0
quotes: quotes:
- 2 - 2
- single - double
- allowTemplateLiterals: true - allowTemplateLiterals: true
no-underscore-dangle: 0 no-underscore-dangle: 0
object-curly-newline: 0 object-curly-newline: 0

View File

@ -2,6 +2,7 @@
"parser": "babel", "parser": "babel",
"printWidth": 100, "printWidth": 100,
"trailingComma": "all", "trailingComma": "all",
"arrowParens": "avoid",
"overrides": [{ "overrides": [{
"files": ".html", "files": ".html",
"options": { "options": {

View File

@ -14,7 +14,7 @@
- [How to configure](#how-to-configure) - [How to configure](#how-to-configure)
- [Post archetype](#post-archetype) - [Post archetype](#post-archetype)
- [Add-ons](#add-ons) - [Add-ons](#add-ons)
- [How to (safely) edit the theme](#how-to-edit) - [How to edit the theme](#how-to-edit)
- [Found a bug?](#bug) - [Found a bug?](#bug)
- [New cool idea or feature](#feature) - [New cool idea or feature](#feature)
- [Terminal theme user?](#terminal-theme-user) - [Terminal theme user?](#terminal-theme-user)
@ -82,10 +82,22 @@ A custom syntax highlighting based on PrismJS. All you need to do is to wrap you
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 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 ### Install theme as Hugo Module
```bash ```bash
hugo mod init github.com/panr/hugo-theme-terminal # 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 hugo mod get github.com/panr/hugo-theme-terminal
``` ```
@ -99,13 +111,6 @@ and in your config file add:
path = 'github.com/panr/hugo-theme-terminal' path = 'github.com/panr/hugo-theme-terminal'
``` ```
and also remove reference to the theme (since Hugo Module don't need it):
```toml
# REMOVE OR COMMENT THIS LINE
theme = "terminal"
```
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/). 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 ### Install theme locally
@ -124,12 +129,16 @@ git submodule add -f https://github.com/panr/hugo-theme-terminal.git themes/term
This will install the repository as a sumbodule in the `themes/terminal` directory. This will install the repository as a sumbodule in the `themes/terminal` directory.
⚠️ **The theme needs at least Hugo version 0.90.x**. ⚠️ 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 ## How to run your site
If you installed all needed `npm` dependencies, then you can run:
```bash ```bash
hugo server -t terminal hugo server -t terminal
``` ```
@ -143,6 +152,8 @@ The theme doesn't require any advanced configuration. Just copy:
```toml ```toml
baseurl = "/" baseurl = "/"
languageCode = "en-us" 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" theme = "terminal"
paginate = 5 paginate = 5

View File

@ -33,6 +33,7 @@
- https://waterloos.niflheimr.blue/ **cindrmon** (Student and Aspiring Software Engineer) - https://waterloos.niflheimr.blue/ **cindrmon** (Student and Aspiring Software Engineer)
- https://monocle.rpod.club/ **classx** (DevOps Engineer) - https://monocle.rpod.club/ **classx** (DevOps Engineer)
- https://wjdevschool.com/ **Wojciech Bogócki** (Making Things & Teaching / W&J Dev School) - 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://dongzhi.me **Joe** (Software Developer)
- https://isaes.com.tr/ **Isa Es** (Software Engineer) - https://isaes.com.tr/ **Isa Es** (Software Engineer)
- https://conight.com **Conight Wang** (Software Engineer) - https://conight.com **Conight Wang** (Software Engineer)

View File

@ -1,17 +1,3 @@
@mixin menu {
$shadow-color: opacify($background, .8);
$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;
list-style: none;
z-index: 99;
}
.header { .header {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -45,128 +31,4 @@
text-decoration: none; text-decoration: none;
} }
} }
.menu {
margin: 20px 1px;
@media ($phone) {
@include menu;
top: 50px;
right: 0;
&.hidden-on-mobile {
display: none;
}
}
&__inner {
display: flex;
flex-wrap: wrap;
list-style: none;
margin: 0;
padding: 0;
&--desktop {
@media ($phone) {
display: none;
}
}
&--mobile {
display: none;
@media ($phone) {
display: block;
}
}
li {
&:not(:last-of-type) {
margin-right: 20px;
margin-bottom: 10px;
flex: 0 0 auto;
}
}
@media ($phone) {
flex-direction: column;
align-items: flex-start;
padding: 0;
li {
margin: 0;
padding: 5px;
}
}
}
&__sub-inner {
position: relative;
list-style: none;
padding: 0;
margin: 0;
&:not(:only-child) {
margin-left: 20px;
}
&-more {
@include menu;
top: 35px;
left: 0;
&-trigger {
color: $accent;
user-select: none;
cursor: pointer;
}
li {
margin: 0;
padding: 5px;
white-space: nowrap;
}
}
}
.spacer {
flex-grow: 1;
}
.language-selector {
position: relative;
list-style: none;
margin: 0;
&-current {
list-style-type: none;
display: flex;
flex-direction: row;
color: $accent;
cursor: pointer;
margin: 0;
}
&__more {
@include menu;
top: 35px;
right: 0;
}
}
&-trigger {
display: none;
color: $accent;
border: 2px solid;
margin-left: 10px;
height: 100%;
padding: 3px 8px;
position: relative;
cursor: pointer;
@media ($phone) {
display: block;
}
}
}
} }

156
assets/css/menu.scss Normal file
View File

@ -0,0 +1,156 @@
@mixin menu {
display: none;
flex-direction: column;
$shadow-color: opacify($background, .8);
$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;
&: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;
}
}
}

View File

@ -5,6 +5,7 @@
@import "form"; @import "form";
@import "header"; @import "header";
@import "menu";
@import "logo"; @import "logo";
@import "main"; @import "main";
@import "post"; @import "post";

View File

@ -4,8 +4,8 @@ $color: white;
$border-color: rgba(255, 255, 255, .1); $border-color: rgba(255, 255, 255, .1);
/* MEDIA QUERIES */ /* MEDIA QUERIES */
$phone: (max-width: 684px); $phone: "max-width: 684px";
$tablet: (max-width: 900px); $tablet: "max-width: 900px";
/* variables for js, must be the same as these in @custom-media queries */ /* variables for js, must be the same as these in @custom-media queries */
:root { :root {

View File

@ -1,23 +0,0 @@
const mobileQuery = getComputedStyle(document.body).getPropertyValue("--phoneWidth");
const isMobile = () => window.matchMedia(mobileQuery).matches;
const languageSelector = document.querySelector(".language-selector-current");
const moreLanguagesContainer = document.querySelector(".language-selector__more");
document.body.addEventListener("click", () => {
if (
!isMobile() &&
moreLanguagesContainer &&
!moreLanguagesContainer.classList.contains("hidden")
) {
moreLanguagesContainer.classList.add("hidden");
}
});
languageSelector &&
languageSelector.addEventListener("click", (e) => {
if (!isMobile()) {
e.stopPropagation();
moreLanguagesContainer.classList.toggle("hidden");
}
});

View File

@ -1,49 +1,44 @@
const container = document.querySelector(".container"); const container = document.querySelector(".container");
const menu = document.querySelector(".menu"); const allMenus = document.querySelectorAll(".menu");
const mobileMenuTrigger = document.querySelector(".menu-trigger");
const desktopMenu = document.querySelector(".menu__inner--desktop");
const desktopMenuTrigger = document.querySelector(".menu__sub-inner-more-trigger");
const menuMore = document.querySelector(".menu__sub-inner-more");
const mobileQuery = getComputedStyle(document.body).getPropertyValue("--phoneWidth");
const isMobile = () => window.matchMedia(mobileQuery).matches;
const handleMenuClasses = () => {
menuMore && menuMore.classList.toggle("hidden-on-mobile", !isMobile());
};
// Common
menu && menu.addEventListener("click", (e) => e.stopPropagation());
menuMore && menuMore.addEventListener("click", (e) => e.stopPropagation());
// handleMenuClasses();
// Hide menus on body click
document.body.addEventListener("click", () => { document.body.addEventListener("click", () => {
if (!isMobile() && menuMore && !menuMore.classList.contains("hidden")) { allMenus.forEach(menu => {
menuMore.classList.add("hidden"); if (menu.classList.contains("open")) {
} else if (isMobile() && !menu.classList.contains("hidden")) { menu.classList.remove("open");
menu.classList.add("hidden");
} }
});
}); });
window.addEventListener("resize", handleMenuClasses); // Reset menus on resize
window.addEventListener("resize", () => {
// Mobile menu allMenus.forEach(menu => {
menu.classList.remove("open");
mobileMenuTrigger &&
mobileMenuTrigger.addEventListener("click", (e) => {
e.stopPropagation();
menu && menu.classList.toggle("hidden-on-mobile");
}); });
});
// Desktop menu // Handle desktop menu
allMenus.forEach(menu => {
const trigger = menu.querySelector(".menu__trigger");
const dropdown = menu.querySelector(".menu__dropdown");
desktopMenuTrigger && trigger.addEventListener("click", e => {
desktopMenuTrigger.addEventListener("click", (e) => {
e.stopPropagation(); e.stopPropagation();
menuMore && menuMore.classList.toggle("hidden");
if (menuMore.getBoundingClientRect().right > container.getBoundingClientRect().right) { if (menu.classList.contains("open")) {
menuMore.style.left = "auto"; menu.classList.remove("open");
menuMore.style.right = 0; } 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());
});

2
go.mod
View File

@ -1,3 +1,3 @@
module github.com/panr/hugo-theme-terminal module github.com/panr/hugo-theme-terminal
go 1.16 go 1.19

View File

@ -21,13 +21,13 @@
</h1> </h1>
<div class="post-meta"> <div class="post-meta">
{{ with .Date }} {{ if .Date }}
<time class="post-date"> <time class="post-date">
{{ .Format "2006-01-02" }} {{ .Date.Format "2006-01-02" }} ::
</time> </time>
{{ end }} {{ end }}
{{ with .Params.Author }} {{ with .Params.Author }}
<span class="post-author">:: {{ . }}</span> <span class="post-author">{{ . }}</span>
{{ end }} {{ end }}
</div> </div>

View File

@ -11,9 +11,9 @@
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a> <a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
</h1> </h1>
<div class="post-meta"> <div class="post-meta">
{{ with .Date }} {{ if .Date }}
<time class="post-date"> <time class="post-date">
{{ .Format "2006-01-02" }} :: {{ .Date.Format "2006-01-02" }} ::
</time> </time>
{{ end }} {{ end }}
{{ with .Params.Author }} {{ with .Params.Author }}

View File

@ -4,9 +4,9 @@
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a> <a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
</h1> </h1>
<div class="post-meta"> <div class="post-meta">
{{ with .Date }} {{ if .Date }}
<time class="post-date"> <time class="post-date">
{{ .Format "2006-01-02" }} :: {{ .Date.Format "2006-01-02" }} ::
{{ if $.Site.Params.showLastUpdated }} {{ if $.Site.Params.showLastUpdated }}
[{{or $.Site.Params.updatedDatePrefix "Updated"}} :: {{ .Lastmod.Format "2006-01-02" }}] [{{or $.Site.Params.updatedDatePrefix "Updated"}} :: {{ .Lastmod.Format "2006-01-02" }}]
{{ end }} {{ end }}

View File

@ -13,10 +13,9 @@
</footer> </footer>
{{ $menu := resources.Get "js/menu.js" | js.Build }} {{ $menu := resources.Get "js/menu.js" | js.Build }}
{{ $languageSelector := resources.Get "js/languageSelector.js" | js.Build }}
{{ $prism := resources.Get "js/prism.js" | js.Build }} {{ $prism := resources.Get "js/prism.js" | js.Build }}
{{ $bundle := slice $menu $languageSelector $prism | resources.Concat "bundle.js" | resources.Minify }} {{ $bundle := slice $menu $prism | resources.Concat "bundle.js" | resources.Minify }}
<script type="text/javascript" src="{{ $bundle.RelPermalink }}"></script> <script type="text/javascript" src="{{ $bundle.RelPermalink }}"></script>

View File

@ -52,8 +52,12 @@
<meta property="og:description" content="{{ if .IsHome }}{{ $.Site.Params.Subtitle }}{{ else if .Description}}{{ .Description | plainify }}{{ else }}{{ .Summary | plainify }}{{ 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:url" content="{{ .Permalink }}" />
<meta property="og:site_name" content="{{ $.Site.Title }}" /> <meta property="og:site_name" content="{{ $.Site.Title }}" />
{{ if and (not .IsHome) (isset .Params "cover") }} {{ if (isset .Params "cover") }}
<meta property="og:image" content="{{ .Param "cover" | absURL }}"> {{ $pageCover := .Param "cover" }}
{{ with (.Resources.GetMatch (.Param "cover")) }}
{{ $pageCover = .RelPermalink }}
{{ end }}
<meta property="og:image" content="{{ $pageCover | absURL }}">
{{ else }} {{ else }}
{{ if isset $.Site.Params "favicon" }} {{ if isset $.Site.Params "favicon" }}
<meta property="og:image" content="{{ $.Site.Params.favicon | absURL }}"> <meta property="og:image" content="{{ $.Site.Params.favicon | absURL }}">
@ -61,8 +65,8 @@
<meta property="og:image" content="{{ printf "img/favicon/%s.png" $.Site.Params.ThemeColor | absURL }}"> <meta property="og:image" content="{{ printf "img/favicon/%s.png" $.Site.Params.ThemeColor | absURL }}">
{{ end }} {{ end }}
{{ end }} {{ end }}
<meta property="og:image:width" content="2048"> <meta property="og:image:width" content="1200">
<meta property="og:image:height" content="1024"> <meta property="og:image:height" content="627">
{{ range .Params.categories }} {{ range .Params.categories }}
<meta property="article:section" content="{{ . }}" /> <meta property="article:section" content="{{ . }}" />
{{ end }} {{ end }}

View File

@ -4,7 +4,10 @@
{{ partial "logo.html" . }} {{ partial "logo.html" . }}
</div> </div>
{{ if len $.Site.Menus }} {{ if len $.Site.Menus }}
<div class="menu-trigger">menu</div> {{ partial "mobile-menu.html" . }}
{{ end }}
{{ if and $.Site.Params.showLanguageSelector (len $.Site.Home.AllTranslations) }}
{{ partial "language-menu.html" . }}
{{ end }} {{ end }}
</div> </div>
{{ if len $.Site.Menus }} {{ if len $.Site.Menus }}

View File

@ -0,0 +1,10 @@
<ul class="menu menu--desktop menu--language-selector">
<li class="menu__trigger">{{ .Language.LanguageName }}&nbsp;</li>
<li>
<ul class="menu__dropdown">
{{ range $.Site.Home.AllTranslations }}
<li><a href="{{ .Permalink }}">{{ .Language.LanguageName }}</a></li>
{{ end }}
</ul>
</li>
</ul>

View File

@ -1,5 +1,5 @@
<nav class="menu hidden-on-mobile"> <nav class="navigation-menu">
<ul class="menu__inner menu__inner--desktop"> <ul class="navigation-menu__inner menu--desktop">
{{ if or $.Site.Params.showMenuItems ( eq .Site.Params.showMenuItems 0 ) }} {{ if or $.Site.Params.showMenuItems ( eq .Site.Params.showMenuItems 0 ) }}
{{ range first $.Site.Params.showMenuItems $.Site.Menus.main }} {{ range first $.Site.Params.showMenuItems $.Site.Menus.main }}
{{ if not .HasChildren }} {{ if not .HasChildren }}
@ -7,17 +7,20 @@
{{ end }} {{ end }}
{{ end }} {{ end }}
{{ if gt (len $.Site.Menus.main) $.Site.Params.showMenuItems }} {{ if gt (len $.Site.Menus.main) $.Site.Params.showMenuItems }}
<ul class="menu__sub-inner"> <li>
<li class="menu__sub-inner-more-trigger">{{ $.Site.Params.MenuMore }} ▾</li> <ul class="menu">
<li class="menu__trigger">{{ $.Site.Params.MenuMore }}&nbsp;</li>
<ul class="menu__sub-inner-more hidden"> <li>
<ul class="menu__dropdown">
{{ range last (sub (len $.Site.Menus.main) $.Site.Params.showMenuItems) $.Site.Menus.main }} {{ range last (sub (len $.Site.Menus.main) $.Site.Params.showMenuItems) $.Site.Menus.main }}
{{ if not .HasChildren }} {{ if not .HasChildren }}
<li><a href="{{ .URL }}">{{ .Name }}</a></li> <li><a href="{{ .URL }}">{{ .Name }}</a></li>
{{ end }} {{ end }}
{{ end }} {{ end }}
</ul> </ul>
</li>
</ul> </ul>
</li>
{{ end }} {{ end }}
{{ else }} {{ else }}
{{ range $.Site.Menus.main }} {{ range $.Site.Menus.main }}
@ -26,35 +29,5 @@
{{ end }} {{ end }}
{{ end }} {{ end }}
{{ end }} {{ end }}
{{ if and $.Site.Params.showLanguageSelector (len $.Site.Home.AllTranslations) }}
<div class="spacer"></div>
<ul class="language-selector">
<ul class="language-selector-current">
<li>{{ .Language.LanguageName }} ▾</li>
</ul>
<ul class="language-selector__more hidden">
{{ range $.Site.Home.AllTranslations }}
<li><a href="{{ .Permalink }}">{{ .Language.LanguageName }}</a></li>
{{ end }}
</ul>
</ul>
{{ end }}
</ul>
<ul class="menu__inner menu__inner--mobile">
{{ 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> </ul>
</nav> </nav>

View File

@ -0,0 +1,20 @@
<ul class="menu menu--mobile">
<li class="menu__trigger">Menu&nbsp;</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>

View File

@ -1,5 +1,12 @@
{ {
"name": "terminal",
"version": "3.1.0",
"author": "Radosław Kozieł <@panr> <radoslaw.koziel@gmail.com>", "author": "Radosław Kozieł <@panr> <radoslaw.koziel@gmail.com>",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "echo 'Test'"
},
"browserslist": [ "browserslist": [
"last 2 versions", "last 2 versions",
">1%", ">1%",
@ -24,16 +31,10 @@
"devDependencies": { "devDependencies": {
"browserslist": "^4.16.5", "browserslist": "^4.16.5",
"clipboard": "^2.0.4", "clipboard": "^2.0.4",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.0", "eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^8.1.0", "eslint-config-prettier": "^8.1.0",
"eslint-plugin-jsx-a11y": "^6.2.1", "eslint-plugin-jsx-a11y": "^6.2.1",
"husky": "^5.1.3" "husky": "^5.1.3"
}, }
"license": "MIT",
"main": "index.js",
"name": "terminal",
"scripts": {
"test": "echo 'Test'"
},
"version": "2.1.0"
} }

View File

@ -5,7 +5,7 @@ description = "A simple, retro theme for Hugo."
homepage = "https://github.com/panr/hugo-theme-terminal/" homepage = "https://github.com/panr/hugo-theme-terminal/"
tags = ["blog", "clean", "customizable", "dark", "highlighting", "minimal", "monotone", "multilingual", "personal", "responsive", "simple", "technical", "retro"] tags = ["blog", "clean", "customizable", "dark", "highlighting", "minimal", "monotone", "multilingual", "personal", "responsive", "simple", "technical", "retro"]
features = ["blog", "shortcode", "syntax highlighting"] features = ["blog", "shortcode", "syntax highlighting"]
min_version = 0.74 min_version = 0.90
[author] [author]
name = "panr" name = "panr"

3570
yarn.lock

File diff suppressed because it is too large Load Diff