-
Notifications
You must be signed in to change notification settings - Fork 22
/
sample.html
82 lines (64 loc) · 2.65 KB
/
sample.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>The worl's greated Jekyll theme</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="apple-touch-img/logo-precomposed" href="/otter-pop/img/logo.jpg">
<link rel="apple-touch-img/logo" href="/otter-pop/img/logo.jpg">
<link rel="apple-touch-img/logo" sizes="72x72" href="/otter-pop/img/logo.jpg">
<link rel="apple-touch-img/logo" sizes="114x114" href="/otter-pop/img/logo.jpg">
<link href="/css/styles.css" rel="stylesheet" type="text/css">
<link href="/css/pygments.css" rel="stylesheet" type="text/css">
<link href="/img/icon.jpg" rel="shortcut icon">
</head>
<body>
<div class="sidebar">
<a href="/" class="logo">
<img src="/otter-pop/img/logo.jpg">
</a>
<ul class="nav">
<div class="nav-inner">
<li><a href="http://tybenz.com"><span class="icon doc"></span>blog</a></li>
<li><a href="http://tybenz.com/about"><span class="icon info"></span>about</a></li>
<li><a href="http://tybenz.com/projects"><span class="icon code"></span>projects</a></li>
<li><a href="http://github.com/tybenz"><span class="icon github"></span>github</a></li>
<li><a href="http://twitter.com/tybenz"><span class="icon twitter"></span>twitter</a></li>
</div>
</ul>
</div>
<div class="wrapper">
<!--<h1><marquee scrolldelay="60">otter pop - the world's greatest jekyll theme</marquee></h1>-->
<h1>This is a sample blog post</h1>
<div class="post-body">
<p>Blogging is fun!</p>
<p>Here's what code looks like with the otter pop theme:</p>
<div class="highlight"><pre><code class="javascript"><span class="kd">var</span> <span class="nx">foo</span> <span class="o">=</span> <span class="s1">'bar'</span><span class="p">;</span>
</code></pre></div>
<p>Here's a blockquote:</p>
<blockquote><p>This is a blockquote from a famous and influential hacker</p></blockquote>
<p>Here is some lists:</p>
<ul>
<li>first</li>
<li>second</li>
<li>third</li>
</ul>
<p>and another:</p>
<ol>
<li>first</li>
<li>second</li>
<li>third</li>
</ol>
</div>
</div>
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-33073396-1', 'tybenz.com');
ga('send', 'pageview');
</script>
</body>
</html>