-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
83 lines (79 loc) · 3.97 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Martin Theme by Allison House</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="stylesheets/styles.css">
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.2/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div id="wrapper">
<header>
<div class="byline"><a href="http://github.com/house">github.com/house</a></div>
<div class="downloads">
<a href="http://github.com/house/martin">Fork on GitHub</a>
• <a href="https://github.com/house/martin/archive/master.zip">Download ZIP</a>
</div>
<hgroup>
<h1>Martin</h1>
<h2 class="tagline">Showcase your project in style with this bold, timeless theme for GitHub pages.</h2>
</hgroup>
</header>
<section>
<h1>About Martin</h1>
<p>Martin is a GitHub pages theme by <a href="http://twitter.com/house">Allison House</a>, named for the punchcutter William Martin. To use it, just <a href="https://github.com/house/martin/fork">fork this project</a> and replace my content with your own. This work is licensed under a <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike 3.0 Unported License.</a></p>
<h1>Style examples</h1>
<h2>Blockquote</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<blockquote>
<p>You know, there are some words I've known since I was a schoolboy. "With the first link, the chain is forged. The first speech censored, the first thought forbidden, the first freedom denied, chains us all irrevocably." Those words were uttered by Judge Aaron Satie as wisdom and warning. The first time any man's freedom is trodden on, we're all damaged.</p>
<p>— Jean-Luc Picard, Star Trek: The Next Generation</p>
</blockquote>
<p>Morbi a mi vel tortor feugiat tempor in et arcu. Etiam vitae aliquet neque, quis vestibulum urna. </p>
<h2>Table</h2>
<table>
<thead>
<tr><th>Whiskey</th><th>Tango</th><th>Foxtrot</th></tr>
</thead>
<tbody>
<tr><td>Apple</td><td>1</td><td>a</td></tr>
<tr><td>Blueberry</td><td>2</td><td>b</td></tr>
<tr><td>Banana</td><td>3</td><td>c</td></tr>
</tbody>
</table>
<h2>Lists</h2>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<h2>Code</h2>
<pre><code>pre, code {
display: block;
line-height: 1.833em;
}</code></pre>
<h2>Headings</h2>
<h3>Here is a headline</h3>
<p>This is the <code><h3></code>. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<h4>Here is another headline</h4>
<p>This is the <code><h4></code>. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<h5>If you need it, here is another</h5>
<p>This is the <code><h5></code>. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<h6>And here's the last one</h6>
<p>This is the <code><h6></code>. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
</section>
<footer>
<p><a href="http://house.github.io/martin">"Martin"</a> by <a href="http://twitter.com/house">Allison House</a></p>
</footer>
</div>
</body>
</html>