Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mrmierzejewski/hugo-theme-console.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Mierzejewski <marcin@mierzejewski.net>2020-05-10 20:52:41 +0300
committerMarcin Mierzejewski <marcin@mierzejewski.net>2020-05-10 20:52:41 +0300
commit8d37fa84025ad08e7e3711e5a9a1c6cbd367590c (patch)
treed6d12783b781e6173768138d6a63dffdfe2c5679
parent35452426d04f2e6c95fd79d38495e2d939cfc067 (diff)
netlify: add netlify.toml file
baseof: add missing tag in menu
-rw-r--r--README.md8
-rw-r--r--layouts/_default/baseof.html2
-rw-r--r--netlify.toml30
3 files changed, 36 insertions, 4 deletions
diff --git a/README.md b/README.md
index da179c9..71ac0db 100644
--- a/README.md
+++ b/README.md
@@ -10,9 +10,11 @@ https://mrmierzejewski.com
## Installation
- $ mkdir themes
- $ cd themes
- $ git submodule add https://github.com/mrmierzejewski/hugo-theme-console.git hugo-theme-console
+```sh
+$ mkdir themes
+$ cd themes
+$ git submodule add https://github.com/mrmierzejewski/hugo-theme-console.git hugo-theme-console
+```
See the [Hugo documentation](https://gohugo.io/themes/installing/) for more information.
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 00fdf16..db80137 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -33,7 +33,7 @@
<div class="logo terminal-prompt">
{{ $url := replace .Permalink ( printf "%s" .Site.BaseURL) "" }}
{{ $.Scratch.Add "path" .Site.BaseURL }}
- <a href="{{ .Site.BaseURL }}" class="no-style site-name">{{ .Site.Title }}</a>:~# {{ range $index, $element := split $url "/" }}{{ $.Scratch.Add "path" $element }}{{ if ne $element "" }}<a href='{{ $.Scratch.Get "path" | absURL }}'>{{ . }}</a>/{{ $.Scratch.Add "path" "/" }}{{ end }}{{ end }}</header>
+ <a href="{{ .Site.BaseURL }}" class="no-style site-name">{{ .Site.Title }}</a>:~# {{ range $index, $element := split $url "/" }}{{ $.Scratch.Add "path" $element }}{{ if ne $element "" }}<a href='{{ $.Scratch.Get "path" | absURL }}'>{{ . }}</a>/{{ $.Scratch.Add "path" "/" }}{{ end }}{{ end }}</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
{{ range .Site.Params.navlinks }}
diff --git a/netlify.toml b/netlify.toml
new file mode 100644
index 0000000..a46b7ee
--- /dev/null
+++ b/netlify.toml
@@ -0,0 +1,30 @@
+[build]
+publish = "public"
+command = "hugo --gc --minify"
+
+[context.production.environment]
+HUGO_VERSION = "0.69.2"
+HUGO_ENV = "production"
+HUGO_ENABLEGITINFO = "true"
+
+[context.split1]
+command = "hugo --gc --minify --enableGitInfo"
+
+[context.split1.environment]
+HUGO_VERSION = "0.69.2"
+HUGO_ENV = "production"
+
+[context.deploy-preview]
+command = "hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL"
+
+[context.deploy-preview.environment]
+HUGO_VERSION = "0.69.2"
+
+[context.branch-deploy]
+command = "hugo --gc --minify -b $DEPLOY_PRIME_URL"
+
+[context.branch-deploy.environment]
+HUGO_VERSION = "0.69.2"
+
+[context.next.environment]
+HUGO_ENABLEGITINFO = "true"