adonis-ssg

dead simple, C89 static site generator with markdown support and no external dependencies
git clone git://kqueue.dev/adonis-ssg.git
Log | Files | Refs | README | LICENSE

template.html (587B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <meta charset="utf-8">
      4 <meta name="viewport" content="width=device-width, initial-scale=1">
      5 <link rel="icon" type="image/png" href="data:image/png;base64,">
      6 <title>INSERT-TITLE</title>
      7 <style>
      8 	@media (prefers-color-scheme: dark){
      9 		body {color:#fff;background:#000}
     10 		a:link {color:#9cf}
     11 		a:hover, a:visited:hover {color:#cef}
     12 		a:visited {color:#c9f}
     13 	}
     14 	body{
     15 		margin:1em auto;
     16 		max-width:40em;
     17 		padding:0 .62em;
     18 		font:1.2em/1.62 sans-serif;
     19 	}
     20 	h1,h2,h3 {
     21 		line-height:1.2;
     22 	}
     23 	@media print{
     24 		body{
     25 			max-width:none
     26 		}
     27 	}
     28 </style>
     29 <article>