-
Notifications
You must be signed in to change notification settings - Fork 0
/
atom.xml
103 lines (74 loc) · 3.64 KB
/
atom.xml
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
96
97
98
99
100
101
102
103
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title><![CDATA[etomlef.github.io]]></title>
<link href="http://etomlef.github.io/atom.xml" rel="self"/>
<link href="http://etomlef.github.io/"/>
<updated>2013-10-24T12:52:33-04:00</updated>
<id>http://etomlef.github.io/</id>
<author>
<name><![CDATA[Emily]]></name>
</author>
<generator uri="http://octopress.org/">Octopress</generator>
<entry>
<title type="html"><![CDATA[Changing the Look of your Octopress Blog.]]></title>
<link href="http://etomlef.github.io/blog/2013/10/23/changing-the-look-of-your-octopress-blog/"/>
<updated>2013-10-23T18:06:00-04:00</updated>
<id>http://etomlef.github.io/blog/2013/10/23/changing-the-look-of-your-octopress-blog</id>
<content type="html"><![CDATA[<p>So, once you make your Octopress blog, there are a ton of themes to choose from. If you’d like to change your theme, you can find a ton by doing a simple Google search.</p>
<p><a href="https://github.com/imathis/octopress/wiki/3rd-Party-Octopress-Themes">3rd Party Octopress Themes</a></p>
<p>For example, I installed the <a href="https://github.com/ryandeussing/octopress-minimalist">Minimalist theme</a> by doing the following —</p>
<pre><code>cd octopress
git clone git://github.com/ryandeussing/octopress-minimalist.git .themes/minimalist
rake install['minimalist']
rake generate
</code></pre>
<p>Then refer to the index.html and _config.yml files to set up your site (change links, add title, and so on.)</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[I have an Octopress!]]></title>
<link href="http://etomlef.github.io/blog/2013/10/23/i-have-an-octopress/"/>
<updated>2013-10-23T12:40:00-04:00</updated>
<id>http://etomlef.github.io/blog/2013/10/23/i-have-an-octopress</id>
<content type="html"><![CDATA[<p>So, as part of our first class, we had to create our own <a href="http://octopress.org/">Octopress Blog</a>. “Octopress is a framework designed by Brandon Mathis for Jekyll, the blog aware static site generator powering Github Pages.”</p>
<p>Settimg it up was fairly straightforward.</p>
<p>First —</p>
<pre><code>git clone git://github.com/imathis/octopress.git octopress
cd octopress
bundle install
bundle exec rake install
</code></pre>
<p>Next —</p>
<p>Set up a repo on Github named <strong>yourusername.github.io</strong></p>
<p>Then back in Terminal —</p>
<pre><code>rake setup_github_pages
rake generate
rake deploy
</code></pre>
<p>If you go to yourusername.github.io, you should see your blog! (It can take up to 10 minutes…)</p>
<p>Create a new blog post —</p>
<pre><code>rake new_post["This is the title of my first Blog post"]
</code></pre>
<p>Edit the markdown file, and then commit the changed files!</p>
<p>If at any time you want to view your blog without having to actually deploy it, you can do so by running…</p>
<pre><code>rake generate
rake preview
</code></pre>
<p>Then go to <a href="http://localhost:4000/">http://localhost:4000/</a> in your browser.</p>
<p>When your blog is looking how you’d like it to look, simply</p>
<pre><code>rake generate
rake deploy
</code></pre>
<p>to send it off to the interwebs.</p>
<p>Ta daa!!</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Man git is easy]]></title>
<link href="http://etomlef.github.io/blog/2013/10/23/man-git-is-easy/"/>
<updated>2013-10-23T01:07:00-04:00</updated>
<id>http://etomlef.github.io/blog/2013/10/23/man-git-is-easy</id>
<content type="html"><![CDATA[<p>Testing, Testing, 1, 2, 3</p>
]]></content>
</entry>
</feed>