annotate _layouts/default.html @ 214:fe5dcb23372a

* _layouts/default.html: add another blind paragraph. See cset 370d7d0cdf7d.
author Kai T. Ohlhus <k.ohlhus@gmail.com>
date Mon, 20 Jul 2020 16:14:52 +0900
parents 370d7d0cdf7d
children 598d7f098082
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
1 <!DOCTYPE html>
210
d402a202c57e * _layouts/default.html: add "lang" attribute.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 206
diff changeset
2 <html lang="en">
0
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
3
194
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
4 <head>
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
5 <meta charset="utf-8">
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
6 <meta http-equiv="X-UA-Compatible" content="IE=edge">
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
7 <meta name="viewport" content="width=device-width, initial-scale=1">
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
8
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
9 <title>{{ page.title | default: site.title }}</title>
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
10 <meta name="description" content="{{ page.excerpt | default: site.description | strip_html | lstrip | rstrip | truncate: 140 }}">
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
11 <meta property="og:title" content="{{ page.title | default: site.title }}">
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
12 <meta property="og:description" content="{{ page.excerpt | default: site.description | strip_html | lstrip | rstrip | truncate: 140 }}">
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
13 <meta property="og:image" content="{{ "/img/octave-logo.png" | absolute_url }}">
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
14 <meta property="og:image:alt" content="GNU Octave">
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
15 <meta property="og:type" content="website">
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
16 <meta property="og:url" content="{{ page.url | absolute_url }}">
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
17 <meta name="twitter:card" content="summary">
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
18
201
4f6a8d987f7f Update foundation framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 194
diff changeset
19 <link
4f6a8d987f7f Update foundation framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 194
diff changeset
20 rel="stylesheet"
4f6a8d987f7f Update foundation framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 194
diff changeset
21 href="https://cdn.jsdelivr.net/npm/foundation-sites@6.6.3/dist/css/foundation.min.css"
4f6a8d987f7f Update foundation framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 194
diff changeset
22 integrity="sha256-ogmFxjqiTMnZhxCqVmcqTvjfe1Y/ec4WaRj/aQPvn+I="
4f6a8d987f7f Update foundation framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 194
diff changeset
23 crossorigin="anonymous">
194
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
24 <link rel="stylesheet" href="{{ "/css/app.css" | relative_url }}">
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
25 <link rel="stylesheet" href="{{ "/css/syntax-highlight.css" | relative_url }}">
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
26 <noscript>
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
27 <style>
203
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
28 .no-js .title-bar { display: none; }
206
68d54c6d397a More top menu bar style tweaks.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 203
diff changeset
29 .no-js .top-bar .top-bar-left { display: block; }
203
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
30 @media screen and (min-width: 40em) {
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
31 .no-js .top-bar { display: block; }
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
32 }
194
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
33 </style>
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
34 </noscript>
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
35
201
4f6a8d987f7f Update foundation framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 194
diff changeset
36 <script
4f6a8d987f7f Update foundation framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 194
diff changeset
37 src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.min.js"
4f6a8d987f7f Update foundation framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 194
diff changeset
38 integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
4f6a8d987f7f Update foundation framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 194
diff changeset
39 crossorigin="anonymous"></script>
4f6a8d987f7f Update foundation framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 194
diff changeset
40 <script
4f6a8d987f7f Update foundation framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 194
diff changeset
41 src="https://cdn.jsdelivr.net/npm/foundation-sites@6.6.3/dist/js/foundation.min.js"
4f6a8d987f7f Update foundation framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 194
diff changeset
42 integrity="sha256-pRF3zifJRA9jXGv++b06qwtSqX1byFQOLjqa2PTEb2o="
4f6a8d987f7f Update foundation framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 194
diff changeset
43 crossorigin="anonymous"></script>
194
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
44
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
45 <link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
46 <link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | relative_url }}">
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
47 </head>
0
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
48
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
49 <body>
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
50
203
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
51 <div data-sticky-container>
206
68d54c6d397a More top menu bar style tweaks.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 203
diff changeset
52 <div class="no-js dark-background" data-sticky data-options="marginTop:0;">
203
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
53
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
54 <div class="title-bar" data-responsive-toggle="homepage-menu" data-hide-for="large">
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
55 <!-- title-bar-X is visible in collapsed mode -->
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
56 <div class="title-bar-left">
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
57 <div class="title-bar-title octave-logo">
206
68d54c6d397a More top menu bar style tweaks.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 203
diff changeset
58 <a href="{{ "/" | relative_url }}">
68d54c6d397a More top menu bar style tweaks.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 203
diff changeset
59 <img src="{{ "/img/octave-logo.svg" | relative_url }}"
68d54c6d397a More top menu bar style tweaks.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 203
diff changeset
60 style="width: 32px; height: auto" alt="GNU Octave logo">
68d54c6d397a More top menu bar style tweaks.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 203
diff changeset
61 <span>{{ site.title }}</span>
68d54c6d397a More top menu bar style tweaks.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 203
diff changeset
62 </a>
203
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
63 </div>
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
64 </div>
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
65 <div class="title-bar-right">
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
66 <button class="menu-icon" type="button" data-toggle="homepage-menu"></button>
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
67 </div>
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
68 </div>
194
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
69
203
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
70 <div class="top-bar" id="homepage-menu">
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
71 <div class="top-bar-left">
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
72 <div class="octave-logo">
206
68d54c6d397a More top menu bar style tweaks.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 203
diff changeset
73 <a href="{{ "/" | relative_url }}">
68d54c6d397a More top menu bar style tweaks.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 203
diff changeset
74 <img src="{{ "/img/octave-logo.svg" | relative_url }}"
68d54c6d397a More top menu bar style tweaks.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 203
diff changeset
75 style="width: 32px; height: auto" alt="GNU Octave logo">
68d54c6d397a More top menu bar style tweaks.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 203
diff changeset
76 <span>{{ site.title }}</span>
68d54c6d397a More top menu bar style tweaks.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 203
diff changeset
77 </a>
203
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
78 </div>
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
79 </div>
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
80 <div class="top-bar-right">
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
81 <ul class="vertical medium-horizontal dropdown menu" data-responsive-menu="accordion large-dropdown">
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
82 {%- for page in site.pages -%}
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
83 {%- if page.menu -%}
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
84 <li>
206
68d54c6d397a More top menu bar style tweaks.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 203
diff changeset
85 <a href="{{ page.url | relative_url }}">{{ page.title }}</a>
203
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
86 </li>
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
87 {%- endif -%}
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
88 {%- endfor -%}
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
89 <li>
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
90 <a href="{{site.docs_url}}">
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
91 <i class="fi-arrow-down"></i>
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
92 <span>Docs</span>
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
93 </a>
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
94 </li>
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
95 </ul>
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
96 </div>
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
97 </div>
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
98 </div>
194
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
99 </div>
0
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
100
203
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
101 <div class="grid-container">
214
fe5dcb23372a * _layouts/default.html: add another blind paragraph.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 213
diff changeset
102 <p></p>
fe5dcb23372a * _layouts/default.html: add another blind paragraph.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 213
diff changeset
103
203
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
104 {{ content }}
102
8d1c300f0a3a Layout changes suggested by Alex to avoid horizontal scrolling.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 0
diff changeset
105
203
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
106 <footer class="text-center">
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
107 <p>
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
108 Octave is free software under the
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
109 <a href="{{ "license.html" | relative_url }}">GNU General Public License.</a>
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
110 </p>
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
111 <small>
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
112 Copyright © 1998-{{ site.time | date: "%Y" }} John W. Eaton.
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
113 This work is licensed under a
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
114 <a rel="license" href="https://creativecommons.org/licenses/by-nd/4.0/">
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
115 Creative Commons Attribution-NoDerivatives 4.0 International License</a>.
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
116 Get the <a href="http://hg.octave.org/web-octave/file/tip">page sources</a>.
3a99431030c1 Update website to use the foundation 6 framework.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 201
diff changeset
117 </small>
213
370d7d0cdf7d Fix layout at different default font sizes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 210
diff changeset
118 <p></p>
194
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
119 </footer>
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
120
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
121 <script>
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
122 $(document).foundation();
9ac0211ca132 * _layouts/default.html: Inline includes.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 102
diff changeset
123 </script>
0
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
124 </div>
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
125
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
126 </body>
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
127
7abe02bf29ec initial commit
Alex Krolick <whokilledtheelectricmonk@gmail.com>
parents:
diff changeset
128 </html>