Skip to content

Commit 0df353d

Browse files
CarolynCarolyn
authored andcommitted
add all the files!
0 parents  commit 0df353d

33 files changed

+2059
-0
lines changed

_config.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Site settings
2+
title: My Awesome Mental Illness Blog
3+
description: > # this means to ignore newlines until "baseurl:"
4+
I was diagnosed with a mental illness in 2009. My journey with my first therapist was one of the most profound I've ever had.
5+
baseurl: "" # the subpath of your site, e.g. /blog/
6+
url: "http://yourdomain.com" # the base hostname & protocol for your site
7+
8+
# Build settings
9+
markdown: kramdown

_includes/footer.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<footer class="site-footer">
2+
<div class="col-1">
3+
<p class="copyright">© {{ 'now' | date: "%Y" }} carolyn dew</p>
4+
</div>
5+
<div class="wrapper">
6+
<!-- <p class="text">{{ site.description }}</p>-->
7+
</div>
8+
</div>
9+
<div class="col-3">
10+
<p class="rss-subscribe"> <a href="{{ "/feed.xml" | prepend: site.baseurl }}">RSS</a></p>
11+
</div>
12+
</footer>

_includes/head.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
4+
<meta name="viewport" content="width=device-width initial-scale=1">
5+
6+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
7+
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
8+
<script src="//use.typekit.net/tph2eeh.js"></script>
9+
<script>try{Typekit.load();}catch(e){}</script>
10+
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
11+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
12+
<link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" />
13+
</head>

_includes/header.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<header class="site-header">
2+
<div class="col-1"></div>
3+
<div class="wrapper">
4+
<nav class="site-nav">
5+
<a href="{{ site.baseurl }}/">Posts</a>
6+
{% for page in site.pages %}
7+
{% if page.title %}
8+
<a href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a>
9+
{% endif %}
10+
{% endfor %}
11+
</nav>
12+
</div>
13+
<div class="col-3"></div>
14+
15+
</header>

_layouts/default.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
{% include head.html %}
5+
6+
<body>
7+
8+
{% include header.html %}
9+
10+
<div class="page-content">
11+
<div class="col-1"></div>
12+
<div class="wrapper">
13+
{{ content }}
14+
</div>
15+
<div class="col-3"></div>
16+
</div>
17+
18+
{% include footer.html %}
19+
20+
</body>
21+
22+
</html>

_layouts/loves.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: default
3+
---
4+
<div class="love">
5+
6+
<header class="post-header">
7+
<h1 class="post-title">{{ page.title }}</h1>
8+
<p class="post-meta">{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p>
9+
</header>
10+
11+
<article class="post-content">
12+
{{ content }}
13+
</article>
14+
15+
</div>

_layouts/page.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: default
3+
---
4+
<div class="post">
5+
6+
<header class="post-header">
7+
<h1 class="post-title">{{ page.title }}</h1>
8+
</header>
9+
10+
<article class="post-content">
11+
{{ content }}
12+
</article>
13+
14+
</div>

_layouts/post.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: default
3+
---
4+
<div class="post">
5+
6+
<header class="post-header">
7+
<h1 class="post-title">{{ page.title }}</h1>
8+
<p class="post-meta">{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p>
9+
</header>
10+
11+
<article class="post-content">
12+
{{ content }}
13+
</article>
14+
15+
</div>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
layout: post
3+
title: "Welcome to Jekyll!"
4+
date: 2014-12-10 15:43:34
5+
categories: jekyll update
6+
---
7+
You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
8+
9+
To add new posts, simply add a file in the `_posts` directory that follows the convention `YYYY-MM-DD-name-of-post.ext` and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works.
10+
11+
Jekyll also offers powerful support for code snippets:
12+
13+
{% highlight ruby %}
14+
def print_hi(name)
15+
puts "Hi, #{name}"
16+
end
17+
print_hi('Tom')
18+
#=> prints 'Hi, Tom' to STDOUT.
19+
{% endhighlight %}
20+
21+
Check out the [Jekyll docs][jekyll] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll’s dedicated Help repository][jekyll-help].
22+
23+
[jekyll]: http://jekyllrb.com
24+
[jekyll-gh]: https://github.com/jekyll/jekyll
25+
[jekyll-help]: https://github.com/jekyll/jekyll-help

_posts/2015-02-16-jelly-croissant.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
layout: post
3+
title: "Jelly croissant brownie topping"
4+
date: 2015-02-16 15:43:34
5+
categories:
6+
---
7+
8+
Jelly croissant brownie topping toffee biscuit caramels donut pastry. Tootsie roll bear claw marzipan I love caramels gummies cotton candy biscuit biscuit. Soufflé sesame snaps sesame snaps topping. Cupcake caramels pudding cookie candy canes dragée muffin chupa chups soufflé. Danish sweet roll sugar plum. Bear claw chocolate bonbon gummies dragée. Ice cream bonbon chocolate bar biscuit pie cake sweet. Biscuit tootsie roll caramels tiramisu I love muffin bear claw liquorice cupcake. I love donut pie biscuit I love I love lemon drops. I love chocolate bar topping topping soufflé oat cake. Candy canes I love dessert liquorice tart I love I love. Caramels brownie jujubes.
9+
10+
Toffee carrot cake cake. Brownie I love chupa chups topping bear claw caramels bonbon. Croissant soufflé soufflé dragée jelly-o biscuit apple pie. Caramels topping donut tootsie roll I love. Lemon drops sweet ice cream cake tart dessert cookie. Cotton candy marzipan apple pie toffee gummies topping macaroon donut. Tart lollipop liquorice icing muffin croissant ice cream I love macaroon. Lollipop oat cake macaroon. Toffee sugar plum biscuit biscuit cookie soufflé carrot cake lemon drops. Toffee bear claw I love icing pudding dragée tootsie roll sugar plum. Wafer soufflé donut jelly I love. Sweet roll marzipan cheesecake fruitcake brownie marshmallow soufflé pudding.
11+
12+
Wafer chupa chups I love oat cake candy toffee. Dragée jelly beans pastry muffin apple pie lemon drops halvah. Dragée halvah marshmallow dragée candy caramels pastry macaroon. Tootsie roll ice cream jelly beans caramels. Tart pie I love liquorice jujubes. Candy canes chocolate bar toffee bonbon. Cotton candy tiramisu croissant cake. Jelly jelly beans sweet roll I love sugar plum I love. Cheesecake jujubes topping apple pie. Liquorice candy cake chocolate bar pastry cake topping danish. Topping pastry topping I love jelly beans I love. Marzipan donut cotton candy oat cake biscuit pastry chupa chups. Donut I love dragée fruitcake cake. Pastry chupa chups bonbon I love candy canes.
13+
14+
Apple pie tiramisu I love jelly chocolate cake biscuit. Sweet roll I love sugar plum cake. Dragée dragée lollipop. Chocolate bar donut jelly cake brownie icing. Cheesecake soufflé cake sesame snaps jelly-o gingerbread cotton candy liquorice wafer. I love cheesecake sesame snaps I love brownie oat cake jelly beans. Lemon drops I love gummies croissant I love. Pudding candy canes cheesecake candy canes ice cream. Bonbon apple pie icing lollipop. Pastry pastry bear claw tootsie roll macaroon gummies marzipan. Muffin cheesecake jelly-o carrot cake macaroon liquorice bonbon lemon drops. Chocolate oat cake I love chocolate cake ice cream soufflé cheesecake.
15+
16+
Chocolate cake cotton candy wafer gummies bear claw. Oat cake cupcake sugar plum cotton candy brownie cake. Candy sesame snaps ice cream sesame snaps topping carrot cake cotton candy halvah. Candy canes halvah croissant candy. Marzipan I love sesame snaps cake candy. Candy bear claw pudding biscuit croissant halvah jelly-o toffee. Icing jelly I love. Gummi bears I love I love cupcake gummi bears donut. Icing dessert marshmallow donut. Cheesecake jujubes toffee jujubes I love bonbon chupa chups cheesecake biscuit. Jelly bear claw danish cheesecake. Pie sweet halvah cake. Chocolate cake I love croissant sweet roll cupcake. Sesame snaps pastry muffin jujubes.

0 commit comments

Comments
 (0)