From 15c7a862bcf83aad0a369c84a0cb9cc323b64c47 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 7 Dec 2020 05:08:54 +0100 Subject: Updated topbar, Added links icons, Added big title --- generate | 3 +++ 1 file changed, 3 insertions(+) (limited to 'generate') diff --git a/generate b/generate index f1f3378..649e0ff 100755 --- a/generate +++ b/generate @@ -31,6 +31,7 @@ blog_path=blog mkdir -p "$blog_path" base_template < index.template.html | base_template_link 'static/img/favicon.png' | + base_template_link 'static/css/index.css' | base_template_link 'static/css/style.css' > index.html base_template < school.template.html | base_template_link 'static/img/favicon.png' | @@ -44,8 +45,10 @@ do post_dst_path=$(echo "$post_path" | sed 's_.md_.html_') pandoc -f markdown -t html < "$post_path" | + sed -e '1i
' -e '$a
' | base_template | base_template_link '../static/img/favicon.png' | + base_template_link '../static/css/blog.css' | base_template_link '../static/css/style.css' > "$post_dst_path" # Add blog artcle link to the index.html -- cgit