UNPKG

md-toy-blog

Version:

Very simple Markdown blog: serves your md as html without fancy databases. You will only spend time writing the actual data.

26 lines (24 loc) 828 B
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Md Toy Blog - Sample page</title> <meta name="description" content="Simplest Blog in Nodejs"> <meta name="author" content="Guillermo Pages"> <link rel="stylesheet" href="/css/styles.css?v=1.0"> <link rel="stylesheet" href="/css/highlight-js-github.css"> </head> <body> <div id="main-container"> <header> <h1>This is my first uncategorized page</h1> </header> <div id="content"> <div class="page"> <p>You can talk about anything, notice how this page's path has no category ?</p> <p>Check out this other page in the the <code>/en/sample-page</code> category <a href="/en/sample-page">English sample page</a></p> </div> </div> </div> </body> </html>