mirror of
https://github.com/jbowdre/runtimeterror.git
synced 2024-11-10 01:52:19 +00:00
commit
305caeee21
4 changed files with 12 additions and 6 deletions
2
build.sh
2
build.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# Quick script to run local builds
|
# Quick script to run local builds
|
||||||
source .env
|
source .env
|
||||||
hugo --minify --environment local -D
|
hugo --environment local -D
|
||||||
npx torchlight
|
npx torchlight
|
||||||
python3 -m http.server --directory public 1313
|
python3 -m http.server --directory public 1313
|
||||||
|
|
||||||
|
|
|
@ -60,3 +60,6 @@ enableInlineShortcodes = true
|
||||||
tag = "tags"
|
tag = "tags"
|
||||||
series = "series"
|
series = "series"
|
||||||
|
|
||||||
|
[minify]
|
||||||
|
disableXML = true
|
||||||
|
minifyOutput = true
|
|
@ -10,9 +10,10 @@
|
||||||
{{- if ge $limit 1 -}}
|
{{- if ge $limit 1 -}}
|
||||||
{{- $pages = $pages | first $limit -}}
|
{{- $pages = $pages | first $limit -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
|
<!-- {{- printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }} -->
|
||||||
<rss version="2.0"
|
<rss version="2.0"
|
||||||
xmlns:atom="http://www.w3.org/2005/Atom"
|
xmlns:atom="http://www.w3.org/2005/Atom"
|
||||||
|
xmlns:content="http://purl.org/rss/1.0/modules/content/"
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||||
<channel>
|
<channel>
|
||||||
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title>
|
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title>
|
||||||
|
@ -40,7 +41,9 @@
|
||||||
{{ range (.GetTerms "tags") }}
|
{{ range (.GetTerms "tags") }}
|
||||||
<category>{{ .LinkTitle }}</category>{{ end }}
|
<category>{{ .LinkTitle }}</category>{{ end }}
|
||||||
<guid>{{ .Permalink }}</guid>
|
<guid>{{ .Permalink }}</guid>
|
||||||
<description>{{ .Summary | plainify }}</description>
|
{{- $content := replaceRE "a href=\"(#.*?)\"" (printf "%s%s%s" "a href=\"" .Permalink "$1\"") .Content -}}
|
||||||
|
{{- $content = replaceRE "img src=\"(.*?)\"" (printf "%s%s%s" "img src=\"" .Permalink "$1\"") $content -}}
|
||||||
|
<description>{{ $content | html }}</description>
|
||||||
</item>
|
</item>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</channel>
|
</channel>
|
||||||
|
|
|
@ -6,14 +6,14 @@
|
||||||
|
|
||||||
[context.production]
|
[context.production]
|
||||||
command = """
|
command = """
|
||||||
hugo --minify
|
hugo
|
||||||
npm i @torchlight-api/torchlight-cli
|
npm i @torchlight-api/torchlight-cli
|
||||||
npx torchlight
|
npx torchlight
|
||||||
"""
|
"""
|
||||||
|
|
||||||
[context.preview]
|
[context.preview]
|
||||||
command = """
|
command = """
|
||||||
hugo --minify --environment preview
|
hugo --environment preview
|
||||||
npm i @torchlight-api/torchlight-cli
|
npm i @torchlight-api/torchlight-cli
|
||||||
npx torchlight
|
npx torchlight
|
||||||
"""
|
"""
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
[context.drafts]
|
[context.drafts]
|
||||||
command = """
|
command = """
|
||||||
hugo --minify --environment drafts -D
|
hugo --environment drafts -D
|
||||||
npm i @torchlight-api/torchlight-cli
|
npm i @torchlight-api/torchlight-cli
|
||||||
npx torchlight
|
npx torchlight
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue