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) 844 B
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Md Toy Blog - Sample english 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 sample page</h1> </header> <div id="content"> <div class="page"> <p>You can talk about anything, but notice that this page is under the <strong>/en</strong> category</p> <p>Check out this other page in the root (aka without category) <a href="/sample-page">sample page without category</a></p> </div> </div> </div> </body> </html>