Skip to content

Commit d745ac5

Browse files
committed
first pages commit
0 parents  commit d745ac5

File tree

130 files changed

+3412
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+3412
-0
lines changed

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Modified from <a href="https://github.com/MozMorris/mozmorris.github.com">Moz Morris's blog</a>.

_config.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
markdown: rdiscount
2+
pygments: true
3+
paginate: 2
4+
# paginate_path: "/page:num"

_includes/page_pagination.html

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!-- provides links on posts to previous/next posts -->
2+
3+
<div id="page-navigation">
4+
<div class="clear">&nbsp;</div>
5+
<div class="left">
6+
{% if page.next.url %}
7+
<p>newer:</p>
8+
<a href="{{page.next.url}}" title="Newer Post:
9+
{{page.next.title}}"> &laquo; {{page.next.title}}</a>
10+
{% endif %}
11+
</div>
12+
13+
<div class="right">
14+
{% if page.previous.url %}
15+
<p>older:</p>
16+
<a href="{{page.previous.url}}" title="Older Post:
17+
{{page.previous.title}}">{{page.previous.title}} &raquo; </a>
18+
{% endif %}
19+
</div>
20+
<div class="clear">&nbsp;</div>
21+
</div>

_includes/post_detail.html

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<h1 class="entry-title">
2+
{% if page.title %}
3+
<a href="{{ root_url }}{{ page.url }}">{{ page.title }}</a>
4+
{% endif %}
5+
{% if post.title %}
6+
<a href="{{ root_url }}{{ post.url }}">{{ post.title }}</a>
7+
{% endif %}
8+
</h1>
9+
<div class="entry-content">{{ content }}</div>

_layouts/_site/default.html

+118
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
<!DOCTYPE html>
2+
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
3+
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
4+
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
5+
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
6+
<head>
7+
<meta charset="utf-8">
8+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
9+
<meta name="author" content="Moz Morris" />
10+
<meta name="viewport" content="width=device-width">
11+
12+
<title>{{ page.title }}</title>
13+
14+
<link rel="stylesheet" href="/css/normalize.css">
15+
<link rel="stylesheet" href="/css/screen.css">
16+
<link rel="stylesheet" href="/css/syntax.css">
17+
<link href="http://feeds.feedburner.com/mozmorris" rel="alternate" title="Moz Morris" type="application/atom+xml" />
18+
19+
<style>
20+
a,
21+
.date span {
22+
color: #{{ page.color }};
23+
}
24+
</style>
25+
26+
<script type="text/javascript">
27+
(function() {
28+
var config = {
29+
kitId: 'pqx4dld',
30+
scriptTimeout: 3000
31+
};
32+
var h = document.getElementsByTagName("html")[0];
33+
h.className += " wf-loading";
34+
var t = setTimeout(function() {
35+
h.className = h.className.replace(/(\s|^)wf-loading(\s|$)/g," ");
36+
h.className += " wf-inactive"
37+
}, config.scriptTimeout);
38+
var tk = document.createElement("script"), d = false;
39+
tk.src = '//use.typekit.net/' + config.kitId + '.js';
40+
tk.type = "text/javascript";
41+
tk.async = "true";
42+
tk.onload = tk.onreadystatechange = function() {
43+
var a = this.readyState;
44+
if (d || a && a != "complete" && a!= "loaded") return;
45+
d = true;
46+
clearTimeout(t);
47+
try {
48+
Typekit.load(config)
49+
} catch (b) {}
50+
};
51+
var s = document.getElementsByTagName("script")[0];
52+
s.parentNode.insertBefore(tk,s)
53+
})();
54+
</script>
55+
56+
<!--[if lt IE 9]>
57+
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
58+
<script>window.html5 || document.write('<script src="js/vendor/html5shiv.js"><\/script>')</script>
59+
<![endif]-->
60+
</head>
61+
<body>
62+
<header class="clearfix">
63+
<nav>
64+
<ul>
65+
<li>
66+
{% if page.link == 'home' %}
67+
<a href="/">Home</a>
68+
{% else %}
69+
<a href="/about.html">About</a>
70+
{% endif %}
71+
</li>
72+
</ul>
73+
</nav>
74+
<div class="image-wrapper">
75+
<img src="/images/space.gif">
76+
<div class="image" style="background-image: url(/images/{{ page.image }});"></div>
77+
</div>
78+
</header>
79+
<div class="wrapper clearfix">
80+
<div class="main">
81+
{{ content }}
82+
<div class="author clearfix">
83+
{% if page.link == 'home' %}
84+
<a class="clip" href="/"><img src="/images/moz_morris.jpg" alt="Moz Morris"></a>
85+
<h3><a href="/">Moz Morris</a></h3>
86+
{% else %}
87+
<a class="clip" href="/about.html"><img src="/images/moz_morris.jpg" alt="Moz Morris"></a>
88+
<h3><a href="/about.html">Moz Morris</a></h3>
89+
{% endif %}
90+
<p>Freelance Web Developer</p>
91+
</div>
92+
<div class="meta clearfix">
93+
<div class="contact">
94+
<p><a href="https://github.com/ourteam">https://github.com/ourteam</a></p>
95+
<p>Theme by <a href="https://github.com/MozMorris/mozmorris.github.com">MozMorris</a></p>
96+
</div>
97+
<div class="contact right">
98+
99+
<p>powered by <a href="https://github.com/mojombo/jekyll">jeykll</a></p>
100+
</div>
101+
</div>
102+
</div>
103+
</div>
104+
<script type="text/javascript">
105+
106+
var _gaq = _gaq || [];
107+
_gaq.push(['_setAccount', 'UA-37441744-1']);
108+
_gaq.push(['_trackPageview']);
109+
110+
(function() {
111+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
112+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
113+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
114+
})();
115+
116+
</script>
117+
</body>
118+
</html>

_layouts/_site/post.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<section class="date">
2+
3+
<p><span></span> - </p>
4+
5+
</section>
6+
7+
<article>
8+
<section class="content">
9+
10+
</section>
11+
</article>
12+
13+
<div id="related">
14+
<h2>Related Posts</h2>
15+
<ul class="posts">
16+
17+
</ul>
18+
<p><a href="/">View all posts</a></p>
19+
</div>

_layouts/default.html

+122
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
<!DOCTYPE html>
2+
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
3+
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
4+
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
5+
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
6+
<head>
7+
<meta charset="utf-8">
8+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
9+
<meta name="author" content="Team Dysania" />
10+
<meta name="viewport" content="width=device-width">
11+
12+
<title>{{ page.title }}</title>
13+
14+
<link rel="stylesheet" href="/css/normalize.css">
15+
<link rel="stylesheet" href="/css/screen.css">
16+
<link rel="stylesheet" href="/css/syntax.css">
17+
<link href="http://feeds.feedburner.com/mozmorris" rel="alternate" title="Moz Morris" type="application/atom+xml" />
18+
19+
<style>
20+
a,
21+
.date span {
22+
color: #{{ page.color }};
23+
}
24+
</style>
25+
26+
<script type="text/javascript">
27+
// (function() {
28+
// var config = {
29+
// kitId: 'pqx4dld',
30+
// scriptTimeout: 3000
31+
// };
32+
// var h = document.getElementsByTagName("html")[0];
33+
// h.className += " wf-loading";
34+
// var t = setTimeout(function() {
35+
// h.className = h.className.replace(/(\s|^)wf-loading(\s|$)/g," ");
36+
// h.className += " wf-inactive"
37+
// }, config.scriptTimeout);
38+
// var tk = document.createElement("script"), d = false;
39+
// tk.src = '//use.typekit.net/' + config.kitId + '.js';
40+
// tk.type = "text/javascript";
41+
// tk.async = "true";
42+
// tk.onload = tk.onreadystatechange = function() {
43+
// var a = this.readyState;
44+
// if (d || a && a != "complete" && a!= "loaded") return;
45+
// d = true;
46+
// clearTimeout(t);
47+
// try {
48+
// Typekit.load(config)
49+
// } catch (b) {}
50+
// };
51+
// var s = document.getElementsByTagName("script")[0];
52+
// s.parentNode.insertBefore(tk,s)
53+
// })();
54+
</script>
55+
56+
<!--[if lt IE 9]>
57+
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
58+
<script>window.html5 || document.write('<script src="js/vendor/html5shiv.js"><\/script>')</script>
59+
<![endif]-->
60+
</head>
61+
<body>
62+
<header class="clearfix">
63+
<nav>
64+
<ul>
65+
<li>
66+
{% if page.link == 'home' %}
67+
<a href="/">&laquo;&nbsp;&nbsp;back to home</a>
68+
{% else %}
69+
<a href="/about.html">DYSANIA</a>
70+
{% endif %}
71+
</li>
72+
</ul>
73+
</nav>
74+
<!-- {% if (page.link != 'home' || page.link != 'about') %}
75+
<div class="image-wrapper">
76+
<img src="/images/space.gif">
77+
<div class="image" style="background-image: url(/images/{{ page.image }});"></div>
78+
</div>
79+
{% endif %} -->
80+
</header>
81+
<div class="wrapper clearfix">
82+
<div class="main">
83+
{{ content }}
84+
<div class="author clearfix">
85+
<div class="left">
86+
<a class="clip" href="https://github.com/vykster"><img src="/images/vykster.jpg" width="75" height="75" alt="Vyki Englert"></a>
87+
<h3><a href="https://github.com/vykster">Vyki Englert</a></h3>
88+
<p><a href="http://twitter.com/toastergrrl">@toastergrrl</a></p>
89+
</div>
90+
<div class="right">
91+
<a class="clip" href="https://github.com/jzeta"><img src="/images/jzeta.jpg" width="75" height="75" alt="Joanna Zeta"></a>
92+
<h3><a href="https://github.com/jzeta">Joanna Zeta</a></h3>
93+
<p><a href="http://twitter.com/jzeta">@jzeta</a></p>
94+
</div>
95+
</div>
96+
<div class="meta clearfix">
97+
<div class="contact">
98+
<p><a href="https://github.com/dysania">https://github.com/dysania</a></p>
99+
<p><a href="/">home</a> / <a href="/archive.html">archive</a> / <a href="/about.html">about</a> / <a href="/atom.xml">atom</a> / <a href="">rss</a></p>
100+
</div>
101+
<div class="contact right">
102+
103+
<p>powered by <a href="https://github.com/mojombo/jekyll">jekyll</a></p>
104+
</div>
105+
</div>
106+
</div>
107+
</div>
108+
<script type="text/javascript">
109+
110+
// var _gaq = _gaq || [];
111+
// _gaq.push(['_setAccount', 'UA-37441744-1']);
112+
// _gaq.push(['_trackPageview']);
113+
114+
// (function() {
115+
// var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
116+
// ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
117+
// var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
118+
// })();
119+
120+
</script>
121+
</body>
122+
</html>

_layouts/post.html

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
layout: default
3+
---
4+
<section class="date">
5+
6+
<p><span><a href="{{ post.url }}">{{ page.date | date: "%B %d, %Y" }}</a></span> - {{ page.location }}</p>
7+
8+
</section>
9+
10+
<article>
11+
<section class="content">
12+
{{ content }}
13+
</section>
14+
</article>
15+
16+
{% include page_navigation.html %}
17+
18+
<!-- <div id="related">
19+
<h2>Related Posts</h2>
20+
<ul class="posts">
21+
{% for post in site.related_posts limit:3 %}
22+
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
23+
{% endfor %}
24+
</ul>
25+
<p><a href="archive.html">View all posts</a></p>
26+
</div> -->

0 commit comments

Comments
 (0)