|
1 |
| -<!DOCTYPE html> |
2 |
| -<html lang="en"><head> |
3 |
| -<meta http-equiv="content-type" content="text/html; charset=UTF-8"> |
4 |
| - |
5 |
| - <!-- Basic Page Needs |
6 |
| - –––––––––––––––––––––––––––––––––––––––––––––––––– --> |
7 |
| - <meta charset="UTF-8"> |
8 |
| - <title>{{ top_title }}</title> |
9 |
| - <meta name="description" content="{{ description }}"> |
10 |
| - <meta name="author" content="{{ author }}"> |
11 |
| - |
12 |
| - <!-- Mobile Specific Metas |
13 |
| - –––––––––––––––––––––––––––––––––––––––––––––––––– --> |
14 |
| - <meta name="viewport" content="width=device-width, initial-scale=1"> |
15 |
| - |
16 |
| - <!-- FONT |
17 |
| - –––––––––––––––––––––––––––––––––––––––––––––––––– --> |
18 |
| - <link href="css/css.css" rel="stylesheet" type="text/css"> |
19 |
| - |
20 |
| - <!-- CSS |
21 |
| - –––––––––––––––––––––––––––––––––––––––––––––––––– --> |
22 |
| - <link rel="stylesheet" href="css/normalize.css"> |
23 |
| - <link rel="stylesheet" href="css/skeleton.css"> |
24 |
| - <link rel="stylesheet" href="css/custom.css"> |
25 |
| - <!--<link rel="stylesheet" href="css/typicons/typicons.min.css">--> |
26 |
| - <!--<link rel="stylesheet" href="css/fontawesome/css/fontawesome.min.css"> |
27 |
| - <link rel="stylesheet" href="css/fontawesome/css/brands.min.css"> |
28 |
| - <link rel="stylesheet" href="css/fontawesome/css/solid.min.css">--> |
29 |
| - <link rel=" stylesheet" href=" https://cdn.jsdelivr.net/npm/[email protected]/src/font/typicons.min.css" > |
30 |
| - <link rel=" stylesheet" href=" https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css" > |
31 |
| - <link rel=" stylesheet" href=" https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/brands.min.css" > |
32 |
| - <link rel=" stylesheet" href=" https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/solid.min.css" > |
33 |
| - |
34 |
| - <!-- Scripts |
35 |
| - –––––––––––––––––––––––––––––––––––––––––––––––––– --> |
36 |
| - <script type="text/javascript" async="" src="js/ga.js"></script><script id="twitter-wjs" src="js/widgets.js"></script><script src="js/jquery.js"></script> |
37 |
| - <!--<script src="js/run_prettify.html"></script>--> |
38 |
| - <link rel="stylesheet" href="css/github-prettify-theme.css"> |
39 |
| - <script src="js/site.js"></script> |
40 |
| - |
41 |
| - <!-- Favicon |
42 |
| - –––––––––––––––––––––––––––––––––––––––––––––––––– --> |
43 |
| - <link rel="icon" type="image/png" href="http://getskeleton.com/dist/images/favicon.png"> |
44 |
| - |
45 |
| -<script charset="utf-8" src="js/button.js"></script></head> |
46 |
| -<body class="code-snippets-visible"> |
47 |
| - |
48 |
| - <!-- Primary Page Layout |
49 |
| - –––––––––––––––––––––––––––––––––––––––––––––––––– --> |
50 |
| - <div class="container"> |
51 |
| - <section class="header"> |
52 |
| - <h1 class="title"> {{ project_name }} </h1> |
53 |
| - {% if not( smart_title is none) %}<h2 class="title"> {{ smart_title }} </h2>{% endif %} |
54 |
| - {% if not( project_url is none) %} |
55 |
| - <a class="button button-primary" href="{{ project_url }}" style="background-color:{{ concept_color }};" > {{ project_url_title }} </a> |
56 |
| - {% endif %} |
57 |
| - {% if not (three_concepts is none) %} |
58 |
| - <div class="value-props row"> |
59 |
| - {% for i in range(three_concepts|length) %} |
60 |
| - <div class="{{ concept_width }} columns value-prop"> |
61 |
| - <h1 style="color:{{ concept_color }};">{{ three_concepts[i] }}</h1> |
62 |
| - {% if not (three_desc is none) %}{{ three_desc[i] }}{% endif %} |
63 |
| - </div> |
64 |
| - {% endfor %} |
65 |
| - </div> |
66 |
| - {% endif %} |
67 |
| - </section> |
68 |
| - |
69 |
| - {% if menus|length>0 %} |
70 |
| - <div class="navbar-spacer"></div> |
71 |
| - <nav class="navbar"> |
72 |
| - <div class="container"> |
73 |
| - <ul class="navbar-list"> |
74 |
| - <!--<li class="navbar-item"><a class="navbar-link" href="#"><large>{{ project_name }}</large></a></li>--> |
75 |
| - {% for menu in menus %} |
76 |
| - <li class="navbar-item"> |
77 |
| - <a class="navbar-link" href="#" data-popover="#codeNavPopover{{ menu[0][0] }}">{{ menu[0][1] }}</a> |
78 |
| - <div id="codeNavPopover{{ menu[0][0] }}" class="popover"> |
79 |
| - <ul class="popover-list"> |
80 |
| - <li class="popover-item"> |
81 |
| - <a class="popover-link" href="#{{ menu[0][0] }}">{{ menu[0][1] }}</a> |
82 |
| - </li> |
83 |
| - {% for ide, ite in menu[1] %} |
84 |
| - <li class="popover-item"> |
85 |
| - <a class="popover-link" href="#{{ ide }}">{{ ite }}</a> |
86 |
| - </li> |
87 |
| - {% endfor %} |
88 |
| - </ul> |
89 |
| - </div> |
90 |
| - </li> |
91 |
| - {% endfor %} |
92 |
| - </ul> |
93 |
| - </div> |
94 |
| - </nav> |
95 |
| - {% endif %} |
96 |
| - |
97 |
| - <!-- main text area --> |
98 |
| - <div class="docs-section" id="intro"> |
99 |
| - {{ content }} |
| 1 | +<!doctype html> |
| 2 | +<html> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <meta http-equiv="X-UA-Compatible" content="chrome=1"> |
| 6 | + <title>{{ top_title }}</title> |
| 7 | + |
| 8 | + <link rel="stylesheet" href="css/styles.css"> |
| 9 | + <link rel="stylesheet" href="css/pygment_trac.css"> |
| 10 | + <link rel=" stylesheet" href=" https://cdn.jsdelivr.net/npm/[email protected]/src/font/typicons.min.css" > |
| 11 | + <link rel=" stylesheet" href=" https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css" > |
| 12 | + <link rel=" stylesheet" href=" https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/brands.min.css" > |
| 13 | + <link rel=" stylesheet" href=" https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/solid.min.css" > |
| 14 | + <meta name="viewport" content="width=device-width"> |
| 15 | + <!--[if lt IE 9]> |
| 16 | + <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> |
| 17 | + <![endif]--> |
| 18 | + </head> |
| 19 | + <body> |
| 20 | + <div class="wrapper"> |
| 21 | + <header> |
| 22 | + <h1>{{ project_name }}</h1> |
| 23 | + <p>{% if not( smart_title is none) %}<h2 class="title"> {{ smart_title }} </h2>{% endif %}</p> |
| 24 | + {% if not( project_url is none) %} |
| 25 | + <p class="view"><a href="{{ project_url }}">{{ project_url_title }} <small>{{ author }}/{{ project_name }}</small></a></p> |
| 26 | + {% endif %} |
| 27 | + </header> |
| 28 | + <section> |
| 29 | + |
| 30 | + {{ content }} |
| 31 | + |
| 32 | + </section> |
| 33 | + <footer> |
| 34 | + <p> {{ author }} is working with a lot of passion on <a href="{{ project_url }}">{{ project_name }}</a>.</p> |
| 35 | + <p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p> |
| 36 | + </footer> |
100 | 37 | </div>
|
101 |
| - </div> |
102 |
| - |
103 |
| - {% if google_analytics is not none %} |
104 |
| - <!-- Google Analytics --> |
105 |
| - <script type="text/javascript"> |
106 |
| - |
107 |
| - var _gaq = _gaq || []; |
108 |
| - _gaq.push(['_setAccount', {{ google_analytics }}]); |
109 |
| - _gaq.push(['_trackPageview']); |
110 |
| - |
111 |
| - (function() { |
112 |
| - var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; |
113 |
| - ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; |
114 |
| - var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); |
115 |
| - })(); |
116 |
| - |
117 |
| - </script> |
118 |
| - {% endif %} |
119 |
| - |
120 |
| -<!-- End Document |
121 |
| - –––––––––––––––––––––––––––––––––––––––––––––––––– --> |
122 |
| -</body></html> |
| 38 | + <script src="js/scale.fix.js"></script> |
| 39 | + </body> |
| 40 | +</html> |
0 commit comments