UNPKG

markdown-styles

Version:

Markdown to HTML generator and multiple CSS themes for Markdown

47 lines (43 loc) 1.71 kB
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>{{title}}</title> <link type="text/css" rel="stylesheet" href="{{asset 'css/bootstrap.css'}}"/> <style> body { padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */ } </style> <link type="text/css" rel="stylesheet" href="{{asset 'css/bootstrap-responsive.css'}}"/> <link type="text/css" rel="stylesheet" href="{{asset 'css/pilcrow.css'}}"/> <link type="text/css" rel="stylesheet" href="{{asset 'css/hljs-github.min.css'}}"/> </head> <body> <div class="navbar navbar-inverse navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="brand" href="#">Project name</a> <div class="nav-collapse collapse"> <ul class="nav"> <li class="active"><a href="#">Home</a></li> <li><a href="#about">About</a></li> <li><a href="#contact">Contact</a></li> </ul> </div><!--/.nav-collapse --> </div> </div> </div> <div class="container"> {{~> content}} </div> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <script type="text/javascript" src="{{asset 'js/bootstrap.min.js'}}"></script> </body> </html>