Compare commits
3 Commits
e0d8a36ab2
...
561b46f68f
Author | SHA1 | Date | |
---|---|---|---|
561b46f68f | |||
8ca73d3d6b | |||
eb775c0f9b |
@ -1,4 +1,4 @@
|
|||||||
baseURL = 'https://drmpt.pxto.pt/'
|
baseURL = 'https://drm-pt.info/'
|
||||||
languageCode = 'pt-pt'
|
languageCode = 'pt-pt'
|
||||||
defaultContentLanguage = "pt"
|
defaultContentLanguage = "pt"
|
||||||
title = "DRM Portugal"
|
title = "DRM Portugal"
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
{{ $year := .Date.Format "2006-01-02" }}
|
{{ $year := .Date.Format "2006-01-02" }}
|
||||||
<ul class='articles detailed'>
|
<ul class='articles detailed'>
|
||||||
{{ range (where site.Pages "Section" "artigos") }}
|
{{ range (where (where site.Pages "Section" "artigos") "Kind" "page") }}
|
||||||
{{ if (eq (.Date.Format "2006-01-02") $year) }}
|
{{ if (eq (.Date.Format "2006-01-02") $year) }}
|
||||||
<li>
|
<li>
|
||||||
{{ $cover := (index (.Resources.ByType "image") 0) }}
|
{{ $cover := (index (.Resources.ByType "image") 0) }}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
{{ $year := .Date.Format "2006-01" }}
|
{{ $year := .Date.Format "2006-01" }}
|
||||||
<ul class='articles detailed'>
|
<ul class='articles detailed'>
|
||||||
{{ range (where site.Pages "Section" "artigos") }}
|
{{ range (where (where site.Pages "Section" "artigos") "Kind" "page") }}
|
||||||
{{ if (eq (.Date.Format "2006-01") $year) }}
|
{{ if (eq (.Date.Format "2006-01") $year) }}
|
||||||
<li>
|
<li>
|
||||||
{{ $cover := (index (.Resources.ByType "image") 0) }}
|
{{ $cover := (index (.Resources.ByType "image") 0) }}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
{{ $year := .Date.Format "2006" }}
|
{{ $year := .Date.Format "2006" }}
|
||||||
<ul class='articles detailed'>
|
<ul class='articles detailed'>
|
||||||
{{ range (where site.Pages "Section" "artigos") }}
|
{{ range (where (where site.Pages "Section" "artigos") "Kind" "page") }}
|
||||||
{{ if (eq (.Date.Format "2006") $year) }}
|
{{ if (eq (.Date.Format "2006") $year) }}
|
||||||
<li>
|
<li>
|
||||||
{{ $cover := (index (.Resources.ByType "image") 0) }}
|
{{ $cover := (index (.Resources.ByType "image") 0) }}
|
||||||
|
@ -4,10 +4,9 @@ mkdir -p content/archd
|
|||||||
mkdir -p content/archm
|
mkdir -p content/archm
|
||||||
mkdir -p content/archy
|
mkdir -p content/archy
|
||||||
|
|
||||||
ack -hm 1 "^date:" content/artigos | sed -e 's/^date: \(....\)-..-.. ..:..:../\1/' | sort -u |
|
grep -Rhm 1 ^date: content/artigos | sed -e 's/^date: \(....\)-..-.. ..:..:../\1/' | sort -u |
|
||||||
while read archy; do echo -e "---\ndate: $archy-01-01 00:00:00\n---" > content/archy/$archy.md; done
|
while read archy; do echo -e "---\ndate: $archy-01-01 00:00:00\n---" > content/archy/$archy.md; done
|
||||||
ack -hm 1 "^date:" content/artigos | sed -e 's/^date: \(....-..\)-.. ..:..:../\1/' | sort -u |
|
grep -Rhm 1 ^date: content/artigos | sed -e 's/^date: \(....-..\)-.. ..:..:../\1/' | sort -u |
|
||||||
while read archm; do echo -e "---\ndate: $archm-01 00:00:00\n---" > content/archm/$archm.md; done
|
while read archm; do echo -e "---\ndate: $archm-01 00:00:00\n---" > content/archm/$archm.md; done
|
||||||
ack -hm 1 "^date:" content/artigos | sed -e 's/^date: \(....-..-..\) ..:..:../\1/' | sort -u |
|
grep -Rhm 1 ^date: content/artigos | sed -e 's/^date: \(....-..-..\) ..:..:../\1/' | sort -u |
|
||||||
while read archd; do echo -e "---\ndate: $archd 00:00:00\n---" > content/archd/$archd.md; done
|
while read archd; do echo -e "---\ndate: $archd 00:00:00\n---" > content/archd/$archd.md; done
|
||||||
|
|
||||||
|
12
mkstork.sh
12
mkstork.sh
@ -9,10 +9,12 @@ frontmatter_handling = "Parse"
|
|||||||
files = [
|
files = [
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
find content/artigos -name "*.md" -printf "%P\n" | while read filename; do
|
find content/artigos -name "*.md" |
|
||||||
slug="$(echo "$filename" | sed -e 's|/index.md||')"
|
sed -e 's|content/artigos/||' |
|
||||||
date="$(cat "content/artigos/$filename" | yq --front-matter=extract .date | sed -e 's/ ..:..:..//' -e 's/-/\//g')"
|
while read filename; do
|
||||||
echo " {url=\"$date/$slug\", title=\"\", path=\"$filename\"},"
|
slug="$(echo "$filename" | sed -e 's|/index.md||')"
|
||||||
done
|
date="$(cat "content/artigos/$filename" | yq --front-matter=extract .date | sed -e 's/ ..:..:..//' -e 's/-/\//g')"
|
||||||
|
echo " {url=\"$date/$slug\", title=\"\", path=\"$filename\"},"
|
||||||
|
done
|
||||||
|
|
||||||
echo "]"
|
echo "]"
|
||||||
|
Loading…
Reference in New Issue
Block a user