--from=markdown+wikilinks_title_before_pipe \
--to=html5 \
--standalone \
- --template=templates/base.html \
+ --css=..././assets/css/normalize.css \
+ --css=../../assets/css/space-sakura.css \
--output=$@ $<
@echo "Building $@ from $<"
+++ /dev/null
-$-- This is a comment; Use $$ for literal $
-$-- Details for writing this template can be found: https://pandoc.org/MANUAL.html#templates
-$-- ${foo} or $foo$ is an interpolated variable
-$-- variables come from YAML front matter (or command line)
-$-- ${if(variable)} conditional text ${endif}
-$-- ${for(foo)} do thing $foo$ ${endfor}
-$-- ${template-name.html} includes another template
-$-- You can use pipes to transform variables if needed
-<!DOCTYPE html>
-<html>
- <head>
- <meta content="text/html; charset=utf-8" http-equiv="content-type">
- <title>$title$</title>
- <meta content="width=device-width, initial-scale=1" name="viewport">
- <link href='../../assets/css/normalize.css' rel='stylesheet' type='text/css'>
- <link href='../../assets/css/space-sakura.css' id="sakura-css" rel='stylesheet' type='text/css'>
-$for(author-meta)$
- <meta name="author" content="$author-meta$">
-$endfor$
-$if(date-meta)$
- <meta name="dcterms.date" content="$date-meta$">
-$endif$
-$if(description)$
- <meta name="description" content="$description$">
-$endif$
-$if(tags)$
- <meta name="keywords" content="$for(tags)$$tags$$sep$, $endfor$">
-$endif$
-$-- <link href="atom.xml" type="application/atom+xml" rel="alternate" title="Sitewide Atom feed" />
- </head>
- <body>
- <nav>
- $navigation$
- <div style="text-align: right">
- <a href="../index.html">Index</a>
- </div>
- </nav>
- <header>
- <h1>$title$</h1>
- </header>
-$body$
- </body>
-</html>
\ No newline at end of file
--- /dev/null
+$-- This is a comment; Use $$ for literal $
+$-- Details for writing this template can be found: https://pandoc.org/MANUAL.html#templates
+$-- ${foo} or $foo$ is an interpolated variable
+$-- variables come from YAML front matter (or command line)
+$-- ${if(variable)} conditional text ${endif}
+$-- ${for(foo)} do thing $foo$ ${endfor}
+$-- ${template-name.html} includes another template
+$-- You can use pipes to transform variables if needed
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta content="text/html; charset=utf-8" http-equiv="content-type">
+ <title>$title$</title>
+ <meta content="width=device-width, initial-scale=1" name="viewport">
+ <!--<link href='../../assets/css/normalize.css' rel='stylesheet' type='text/css'>
+ <link href='../../assets/css/space-sakura.css' id="sakura-css" rel='stylesheet' type='text/css'>
+ -->
+$for(author-meta)$
+ <meta name="author" content="$author-meta$">
+$endfor$
+$if(date-meta)$
+ <meta name="dcterms.date" content="$date-meta$">
+$endif$
+$if(description)$
+ <meta name="description" content="$description$">
+$endif$
+$if(tags)$
+ <meta name="keywords" content="$for(tags)$$tags$$sep$, $endfor$">
+$endif$
+$-- <link href="atom.xml" type="application/atom+xml" rel="alternate" title="Sitewide Atom feed" />
+ </head>
+ <body>
+ <nav>
+ $navigation$
+ <div style="text-align: right">
+ <a href="../index.html">Index</a>
+ </div>
+ </nav>
+ <header>
+ <h1>$title$</h1>
+ </header>
+$body$
+ </body>
+</html>
\ No newline at end of file