commit 4b80bdaa61070dc37ab89e7e5849688fc010c891
parent ed5970b7f8f373ab4438ad9cbf1548e5cab4b99e
Author: Christos Margiolis <christos@margiolis.net>
Date: Mon, 7 Sep 2020 18:11:43 +0300
removed meta property support
Diffstat:
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/autoblog b/autoblog
@@ -26,7 +26,6 @@ newpost()
{
mkdir -p $draftdir
read -erp "Title: " title && [ -z "$title" ] && echo "Please specify a title." && exit
- #read -erp "Description: " description && [ -z "$description" ] && echo "Please specify a small description." && exit
blogpost=$(echo $title | iconv -cf UTF-8 -t ASCII//TRANSLIT | tr -d '[:punct:]' | tr '[:upper:]' '[:lower:]' | tr ' ' '-')
[ -f "$blogdir/$blogpost.html" ] && echo "File exists already." && exit
$EDITOR "$draftdir/$blogpost.html"
diff --git a/template.html b/template.html
@@ -2,7 +2,7 @@
<html>
<head>
<meta charset="UTF-8">
- <link rel="stylesheet" href="styles.css"/>
+ <link rel="stylesheet" href="../styles.css"/>
<title>TITLE</title>
</head>