diff options
-rwxr-xr-x | ssg5 | 6 | ||||
-rw-r--r-- | wpisy/kronika/2020/06/24/proba-na-cwika.md | 5 | ||||
-rw-r--r-- | wpisy/kronika/2020/10/17/biwak-na-forcie-1a.md | 2 | ||||
-rw-r--r-- | wpisy/style.css | 6 |
4 files changed, 13 insertions, 6 deletions
diff --git a/ssg5 b/ssg5 index d29088c..bd58726 100755 --- a/ssg5 +++ b/ssg5 @@ -70,7 +70,7 @@ main() { echo "$fs" | grep '\.md$' | render_md_files_lowdown "$src" "$dst" "$title" else - echo "couldn't find lowdown nor Markdown.pl" + echo "couldn't find lowdown" exit 3 fi fi @@ -199,10 +199,10 @@ render_md_files_lowdown() { if [ "$(echo $f | cut -d'/' -f 2)" = "kronika" ]; then echo "<article>" > $in && \ - lowdown "$1/$f" >> $in && \ + lowdown --html-no-skiphtml --html-no-escapehtml "$1/$f" >> $in && \ echo "</article>" >> $in else - lowdown "$1/$f" > $in + lowdown --html-no-skiphtml --html-no-escapehtml "$1/$f" > $in fi cat "$in" | diff --git a/wpisy/kronika/2020/06/24/proba-na-cwika.md b/wpisy/kronika/2020/06/24/proba-na-cwika.md index 19c7268..4e62726 100644 --- a/wpisy/kronika/2020/06/24/proba-na-cwika.md +++ b/wpisy/kronika/2020/06/24/proba-na-cwika.md @@ -21,7 +21,10 @@ Rozpocząłem przygotowania od telefonu do mojego zaufanego człowieka ds. okoł Wywiad: -![](https://api-puszcza.netlify.app/files/2020/06/24/wywiad-z-prezydentem.m4a) +<audio controls> + <source src="../wywiad-z-prezydentem.m4a" type="audio/mp4"> + <source src="../wywiad-z-prezydentem.mp3" type="audio/mpeg"> +</audio> ## Część 4: Epilog diff --git a/wpisy/kronika/2020/10/17/biwak-na-forcie-1a.md b/wpisy/kronika/2020/10/17/biwak-na-forcie-1a.md index bb51b4e..7fa7100 100644 --- a/wpisy/kronika/2020/10/17/biwak-na-forcie-1a.md +++ b/wpisy/kronika/2020/10/17/biwak-na-forcie-1a.md @@ -1,4 +1,4 @@ -![Nasze obozowisko](https://lh4.googleusercontent.com/uDbrigtJ46xmiYDcTeRV1LzGe7lUx65SGdik88BNied7IGe7gf9iEHBFm3PpW2rsqkooZanA4UFebGjneq5aiImS37HOJe5JVT7twGjMbR51OL4xxQhGjEfjZRtpTzGpViyF6LAu) +![Jajecznica na śniadanie](https://lh4.googleusercontent.com/uDbrigtJ46xmiYDcTeRV1LzGe7lUx65SGdik88BNied7IGe7gf9iEHBFm3PpW2rsqkooZanA4UFebGjneq5aiImS37HOJe5JVT7twGjMbR51OL4xxQhGjEfjZRtpTzGpViyF6LAu) # Biwak na forcie 1A diff --git a/wpisy/style.css b/wpisy/style.css index 3455f57..91a590a 100644 --- a/wpisy/style.css +++ b/wpisy/style.css @@ -6,6 +6,10 @@ } +* { + box-sizing: border-box; +} + html, body { margin: 0; padding: 0; @@ -38,7 +42,7 @@ main { header { box-shadow: 0 0 20px rgb(0 0 0 / 10%); - padding: 2ex 0; + padding: 2ex 1ex; } header > div { |