-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (92 loc) · 4.19 KB
/
index.html
File metadata and controls
95 lines (92 loc) · 4.19 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width">
<title>Miles
</title>
<link rel="alternate" href="http://localhost:8080/feed.xml" type="application/rss+xml">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Ropa+Sans:400,400italic|Droid+Serif:400,700italic|Hammersmith+One|Scada:400italic,400|Francois+One">
<link rel="stylesheet" href="/style/main.css">
</head>
<body>
<div class="container fill">
<div class="row fill">
<div class="col-md-8 col-sm-8 col-xs-12">
<div class="row">
<div id="content">
<div class="content-wrap">
<article class="article">
<header>
<p class="date"><span>19. February 2014</span></p>
<h2 class="title"><a href="/articles/a-quick-lesson-in-regex/">A Quick Lesson in Regex</a></h2>
</header>
<section class="content"><p>Regular expressions are insane. The ratio between their power and size is stupid.
With a few lines of code, you can quickly reformat large data sets or locate impossibly
well hidden text. If you haven’t taught yourself Regex, do yourself a favor. I’ll help get
you started. First though, get a text editor that supports Regex. I like Notepad++.
If you want to use something else, that’s fine.</p>
<p class="more"><a href="/articles/a-quick-lesson-in-regex/">more</a></p>
</section>
</article>
<article class="article">
<header>
<p class="date"><span>19. February 2014</span></p>
<h2 class="title"><a href="/articles/paradise/">A Squatter's Paradise</a></h2>
</header>
<section class="content"><p>Nothing’s free.</p>
<p>Except this blog, which is 100% free. (For me, at least)</p>
<p class="more"><a href="/articles/paradise/">more</a></p>
</section>
</article>
<article class="article">
<header>
<p class="date"><span>13. February 2014</span></p>
<h2 class="title"><a href="/articles/hello-world/">Hello World?</a></h2>
</header>
<section class="content"><p>Migration is sort of done. Not really.</p>
<p>But I have managed to wrestle <a href="http://zespia.tw/hexo">Hexo</a> into submission.
Expect a far more active blog from here on out. No excuses.</p>
</section>
</article>
</div>
</div>
</div>
<div class="row">
<footer>
<div class="row">
<div class="button-secondary"><a href="/page/2/">Starboard! <span class="glyphicon glyphicon-forward"></span></a></div>
<div class="button-secondary"><a href="/archive.html">Archives <span class="glyphicon glyphicon-time"></span></a></div>
</div>
<section class="about">
</section>
<section class="copy">
<p>© 2014 Miles — powered by <a href="https://github.com/jnordberg/wintersmith">Wintersmith</a>
</p>
</section>
</footer>
</div>
</div>
<div class="col-md-4 col-sm-4 hidden-xs fill">
<div class="sidebar">
<header class="header">
<div class="row">
<div class="logo"><a href="http://localhost:8080">Miles</a></div>
<div class="sub">Making things</div>
</div>
<div class="row">
<div class="menu">
<li><a href="/">Blog</a></li>
<li><a href="/projects">Projects</a></li>
<li><a href="/portfolio">Portfolio</a></li>
<li><a href="/about">About</a></li>
</div>
</div>
</header>
</div>
</div>
</div>
</div>
</body>
</html>