diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-11-24 14:34:52 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-11-24 14:34:52 +0100 |
| commit | efe6f0326400fd02b14ccaaed451eb9b306c7fe5 (patch) | |
| tree | 40f398fb9d0011a42cf0cf660092d3f719451315 /generate | |
| parent | ffddb857bc51dc6682052b3f926966391deb8775 (diff) | |
| download | cacharle.xyz-efe6f0326400fd02b14ccaaed451eb9b306c7fe5.tar.gz cacharle.xyz-efe6f0326400fd02b14ccaaed451eb9b306c7fe5.tar.bz2 cacharle.xyz-efe6f0326400fd02b14ccaaed451eb9b306c7fe5.zip | |
Fixing canvas height
Diffstat (limited to 'generate')
| -rwxr-xr-x | generate | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -37,7 +37,7 @@ base_template < school.template.html | base_template_link 'style.css' > school.html # Generate blog posts -for post_path in "$(find "$blog_path" -name '*.md')" +for post_path in "$blog_path"/*.md do post_dst_path=$(echo "$post_path" | sed 's_.md_.html_') @@ -68,5 +68,5 @@ do sed -i'' "/<!-- UTILSINDEX -->/ a\ <li><a href=\"$util_path\">$title</a></li>" index.html - echo "Generated utility at $util_path" + echo "Generated utility at $util_path/index.html" done |
