From 9f1b37fa346a7dcf77c1b6963a6d2e4b871fe5ed Mon Sep 17 00:00:00 2001 From: Stonewall Jackson Date: Sun, 22 Jan 2023 09:56:17 -0500 Subject: initial commit --- templates/cv.html | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++ templates/default.html | 89 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 182 insertions(+) create mode 100644 templates/cv.html create mode 100644 templates/default.html (limited to 'templates') diff --git a/templates/cv.html b/templates/cv.html new file mode 100644 index 0000000..d61dd33 --- /dev/null +++ b/templates/cv.html @@ -0,0 +1,93 @@ + + + + + +$for(author-meta)$ + +$endfor$ +$if(date-meta)$ + +$endif$ +$if(description)$ + +$endif$ +$if(keywords)$ + +$endif$ + $if(title-prefix)$$title-prefix$ – $endif$$title$ + + + + + + + + + +$if(highlighting-css)$ + +$endif$ +$for(css)$ + +$endfor$ +$for(header-includes)$ + $header-includes$ +$endfor$ + + +$for(include-before)$ +$include-before$ +$endfor$ + + + +
+$if(heading)$ +

$heading$

+$else$ +

$title$

+$endif$ +$if(subtitle)$ +

$subtitle$

+$endif$ +
+ +$if(toc)$ + +$endif$ + +$body$ + +$for(include-after)$ +$include-after$ +$endfor$ + + + diff --git a/templates/default.html b/templates/default.html new file mode 100644 index 0000000..4145c9b --- /dev/null +++ b/templates/default.html @@ -0,0 +1,89 @@ + + + + + +$for(author-meta)$ + +$endfor$ +$if(date-meta)$ + +$endif$ +$if(description)$ + +$endif$ +$if(keywords)$ + +$endif$ + $if(title-prefix)$$title-prefix$ – $endif$$title$ + + + + + + + + + +$if(highlighting-css)$ + +$endif$ +$for(css)$ + +$endfor$ +$for(header-includes)$ + $header-includes$ +$endfor$ + + +$for(include-before)$ +$include-before$ +$endfor$ + + + +
+$if(heading)$ +

$heading$

+$else$ +

$title$

+$endif$ +$if(subtitle)$ +

$subtitle$

+$endif$ +$if(date)$ +

$date$

+$endif$ +
+ +$if(toc)$ + +$endif$ + +$body$ + +$for(include-after)$ +$include-after$ +$endfor$ + + -- cgit