49 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| <meta charset="utf-8">
 | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
 | |
| <meta name="apple-mobile-web-app-capable" content="yes">
 | |
| <meta name="apple-mobile-web-app-status-bar-style" content="black">
 | |
| <meta name="mobile-web-app-capable" content="yes">
 | |
| <% if(typeof robots !== 'undefined' && robots) { %>
 | |
| <meta name="robots" content="<%- robots %>">
 | |
| <% } %>
 | |
| <title><%- title %></title>
 | |
| <link rel="icon" type="image/png" href="<%- url %>/favicon.png">
 | |
| <link rel="apple-touch-icon" href="<%- url %>/apple-touch-icon.png">
 | |
| <% if(useCDN) { %>
 | |
| <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
 | |
| <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
 | |
| <link rel="stylesheet" href="//cdn.jsdelivr.net/ionicons/2.0.1/css/ionicons.min.css">
 | |
| <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-social/4.9.0/bootstrap-social.min.css">
 | |
| <% } else { %>
 | |
| <link rel="stylesheet" href="<%- url %>/vendor/bootstrap/dist/css/bootstrap.min.css">
 | |
| <link rel="stylesheet" href="<%- url %>/vendor/font-awesome/css/font-awesome.min.css">
 | |
| <link rel="stylesheet" href="<%- url %>/vendor/Ionicons/css/ionicons.min.css">
 | |
| <link rel="stylesheet" href="<%- url %>/css/bootstrap-social.css">
 | |
| <% } %>
 | |
| <link rel="stylesheet" href="<%- url %>/vendor/jquery-ui/jquery-ui.min.css">
 | |
| <link rel="stylesheet" href="<%- url %>/vendor/codemirror/lib/codemirror.css">
 | |
| <link rel="stylesheet" href="<%- url %>/vendor/codemirror/addon/fold/foldgutter.css">
 | |
| <link rel="stylesheet" href="<%- url %>/vendor/codemirror/addon/display/fullscreen.css">
 | |
| <link rel="stylesheet" href="<%- url %>/vendor/codemirror/addon/dialog/dialog.css">
 | |
| <link rel="stylesheet" href="<%- url %>/vendor/codemirror/addon/scroll/simplescrollbars.css">
 | |
| <link rel="stylesheet" href="<%- url %>/vendor/codemirror/addon/search/matchesonscrollbar.css">
 | |
| <link rel="stylesheet" href="<%- url %>/vendor/codemirror/theme/monokai.css">
 | |
| <link rel="stylesheet" href="<%- url %>/vendor/codemirror/theme/one-dark.css">
 | |
| <link rel="stylesheet" href="<%- url %>/css/github-extract.css">
 | |
| <link rel="stylesheet" href="<%- url %>/vendor/highlight-js/github-gist.min.css">
 | |
| <link rel="stylesheet" href="<%- url %>/vendor/emojify/css/emojify.min.css">
 | |
| <link rel="stylesheet" href="<%- url %>/vendor/showup/showup.css">
 | |
| <link rel="stylesheet" href="<%- url %>/css/mermaid.css">
 | |
| <link rel="stylesheet" href="<%- url %>/css/markdown.css">
 | |
| <link rel="stylesheet" href="<%- url %>/css/index.css">
 | |
| <link rel="stylesheet" href="<%- url %>/css/extra.css">
 | |
| <link rel="stylesheet" href="<%- url %>/css/site.css">
 | |
| <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
 | |
| <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
 | |
| <!--[if lt IE 9]>
 | |
| 	<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
 | |
| 	<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
 | |
| 	<script src="https://cdnjs.cloudflare.com/ajax/libs/es5-shim/4.2.0/es5-shim.min.js"></script>
 | |
| <![endif]-->
 |