Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 55cc4f2

Browse filesBrowse files
committed
Conflicts: CNAME archives/2015/index.html archives/index.html css/images/logo-header.png index.html
2 parents c68dd5e + e04b6ca commit 55cc4f2
Copy full SHA for 55cc4f2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

48 files changed

+455
-0
lines changed

‎2015/04/28/hello-world/index.html

Copy file name to clipboard
+228Lines changed: 228 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,228 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
6+
<title>Hello World | Adam Knight</title>
7+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
8+
<meta name="description" content="Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
9+
Quick">
10+
<meta property="og:type" content="article">
11+
<meta property="og:title" content="Hello World">
12+
<meta property="og:url" content="http://codeecho.co.uk/2015/04/28/hello-world/index.html">
13+
<meta property="og:site_name" content="Adam Knight">
14+
<meta property="og:description" content="Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
15+
Quick">
16+
<meta name="twitter:card" content="summary">
17+
<meta name="twitter:title" content="Hello World">
18+
<meta name="twitter:description" content="Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
19+
Quick">
20+
21+
22+
23+
<link rel="stylesheet" href="/css/style.css" type="text/css">
24+
25+
26+
27+
28+
29+
30+
31+
32+
<link href='//fonts.useso.com/css?family=Titillium+Web:300,400,600' rel='stylesheet' type='text/css'>
33+
<link href="//fonts.useso.com/css?family=Source+Code+Pro" rel="stylesheet" type="text/css">
34+
35+
36+
</head>
37+
38+
<body>
39+
<div id="wrap">
40+
<header id="header">
41+
<div id="header-outer" class="outer">
42+
<div class="container">
43+
<div class="container-inner">
44+
<div id="header-title">
45+
<h1 class="logo-wrap">
46+
<a href="/" class="logo"></a>
47+
</h1>
48+
49+
<h2 class="subtitle-wrap">
50+
<p class="subtitle">Software Developer</p>
51+
</h2>
52+
53+
</div>
54+
<div id="header-inner" class="nav-container">
55+
<a id="main-nav-toggle" class="nav-icon"></a>
56+
<div class="nav-container-inner">
57+
<ul id="main-nav">
58+
59+
</ul>
60+
<nav id="sub-nav">
61+
<div id="search-form-wrap">
62+
<form action="//google.com/search" method="get" accept-charset="UTF-8" class="search-form"><input type="search" name="q" results="0" class="search-form-input" placeholder="Search"><input type="hidden" name="q" value="site:http://codeecho.co.uk"></form>
63+
</div>
64+
</nav>
65+
</div>
66+
</div>
67+
</div>
68+
</div>
69+
</div>
70+
</header>
71+
<div class="container">
72+
<div class="main-body container-inner">
73+
<div class="main-body-inner">
74+
<section id="main">
75+
<div class="main-body-header">
76+
77+
<h1 class="header">uncategorized</h1>
78+
</div>
79+
<div class="main-body-content">
80+
81+
<article id="post-hello-world" class="article article-single article-type-post" itemscope itemprop="blogPost">
82+
<div class="article-inner">
83+
<!-- -->
84+
85+
<header class="article-header">
86+
87+
88+
<h1 class="article-title" itemprop="name">
89+
Hello World
90+
</h1>
91+
92+
93+
</header>
94+
95+
<p class="article-byline">
96+
<a href="/2015/04/28/hello-world/" class="article-date">
97+
<time datetime="2015-04-28T11:33:48.000Z" itemprop="datePublished">2015-04-28</time>
98+
</a>
99+
</p>
100+
<div class="article-entry" itemprop="articleBody">
101+
<p>Welcome to <a href="http://hexo.io/" target="_blank" rel="external">Hexo</a>! This is your very first post. Check <a href="http://hexo.io/docs/" target="_blank" rel="external">documentation</a> for more info. If you get any problems when using Hexo, you can find the answer in <a href="http://hexo.io/docs/troubleshooting.html" target="_blank" rel="external">troubleshooting</a> or you can ask me on <a href="https://github.com/hexojs/hexo/issues" target="_blank" rel="external">GitHub</a>.</p>
102+
<h2 id="Quick_Start">Quick Start</h2><h3 id="Create_a_new_post">Create a new post</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo new <span class="string">"My New Post"</span></span><br></pre></td></tr></table></figure>
103+
<p>More info: <a href="http://hexo.io/docs/writing.html" target="_blank" rel="external">Writing</a></p>
104+
<h3 id="Run_server">Run server</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo server</span><br></pre></td></tr></table></figure>
105+
<p>More info: <a href="http://hexo.io/docs/server.html" target="_blank" rel="external">Server</a></p>
106+
<h3 id="Generate_static_files">Generate static files</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo generate</span><br></pre></td></tr></table></figure>
107+
<p>More info: <a href="http://hexo.io/docs/generating.html" target="_blank" rel="external">Generating</a></p>
108+
<h3 id="Deploy_to_remote_sites">Deploy to remote sites</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo deploy</span><br></pre></td></tr></table></figure>
109+
<p>More info: <a href="http://hexo.io/docs/deployment.html" target="_blank" rel="external">Deployment</a></p>
110+
111+
</div>
112+
<footer class="article-footer">
113+
<a data-url="http://codeecho.co.uk/2015/04/28/hello-world/" data-id="ci918ngdz0000t8u7xk31k4n0" class="article-share-link">Share</a>
114+
115+
116+
</footer>
117+
</div>
118+
</article>
119+
120+
121+
</div>
122+
</section>
123+
<aside id="sidebar">
124+
<a class="sidebar-toggle" title="Expand Sidebar"><i class="toggle icon"></i></a>
125+
<div class="sidebar-top">
126+
<p>follow:</p>
127+
<ul class="social-links">
128+
129+
<li><a class="social-tooltip" title="github" href="https://github.com/codeecho" target="_blank"><i id="icon-github" class="icon"></i></a></li>
130+
131+
<li><a class="social-tooltip" title="twitter" href="https://twitter.com/codeechodev" target="_blank"><i id="icon-twitter" class="icon"></i></a></li>
132+
133+
<li><a class="social-tooltip" title="google_plus" href="https://plus.google.com/u/2/116870795787793768489/posts" target="_blank"><i id="icon-google_plus" class="icon"></i></a></li>
134+
135+
</ul>
136+
</div>
137+
138+
139+
140+
<div class="widgets-container">
141+
142+
143+
<div class="widget-wrap">
144+
<h3 class="widget-title">recents</h3>
145+
<div class="widget">
146+
<ul id="recent-post" class="no-thumbnail">
147+
148+
<li>
149+
150+
<div class="item-inner">
151+
<p class="item-category"></p>
152+
<p class="item-title"><a href="/2015/04/28/hello-world/" class="title">Hello World</a></p>
153+
<p class="item-date"><time datetime="2015-04-28T11:33:48.000Z" itemprop="datePublished">2015-04-28</time></p>
154+
</div>
155+
</li>
156+
157+
</ul>
158+
</div>
159+
</div>
160+
161+
162+
163+
164+
165+
166+
<div class="widget-wrap widget-list">
167+
<h3 class="widget-title">archives</h3>
168+
<div class="widget">
169+
<ul class="archive-list"><li class="archive-list-item"><a class="archive-list-link" href="/archives/2015/04/">April 2015</a><span class="archive-list-count">1</span></li></ul>
170+
</div>
171+
</div>
172+
173+
174+
175+
176+
177+
178+
179+
180+
181+
182+
<div class="widget-wrap widget-list">
183+
<h3 class="widget-title">links</h3>
184+
<div class="widget">
185+
<ul>
186+
187+
</ul>
188+
</div>
189+
</div>
190+
191+
192+
193+
</div>
194+
</aside>
195+
</div>
196+
</div>
197+
</div>
198+
<footer id="footer">
199+
200+
<div class="container">
201+
<div class="container-inner">
202+
<a id="back-to-top" href="javascript:;"><i class="icon" id="icon-angle-up"></i></a>
203+
<div class="credit">
204+
<h1 class="logo-wrap">
205+
<a href="/" class="logo"></a>
206+
</h1>
207+
<p>&copy; 2015 Adam Knight</p>
208+
<p>Powered by <a href="//hexo.io/" target="_blank">Hexo</a>. Theme by <a href="//github.com/ppoffice" target="_blank">PPOffice</a></p>
209+
</div>
210+
</div>
211+
</div>
212+
</footer>
213+
214+
215+
216+
<script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
217+
218+
219+
220+
221+
222+
223+
<script src="/js/html-patch.js" type="text/javascript"></script>
224+
<script src="/js/script.js" type="text/javascript"></script>
225+
226+
</div>
227+
</body>
228+
</html>

‎2015/06/12/Setting-up-a-custom-domain-with-GitHub-Pages-and-Tsohost/index.html

Copy file name to clipboard
100755100644
Expand all lines: 2015/06/12/Setting-up-a-custom-domain-with-GitHub-Pages-and-Tsohost/index.html
File mode changed.

‎CNAME

Copy file name to clipboard
100755100644
Expand all lines: CNAME
File mode changed.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.