-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·34 lines (26 loc) · 1.32 KB
/
index.html
File metadata and controls
executable file
·34 lines (26 loc) · 1.32 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
---
layout: default
---
<div class="home">
<div class="recipes xs-px1 xs-mt2">
<div class="clearfix">
{% assign sorted = site.recipes | sort:"date" %}
{% for post in sorted %}
<div class="sm-col sm-col-6 md-col-6 lg-col-4 xs-px1 xs-mb2">
<a class="block relative bg-blue" href="{{ post.url | prepend: site.baseurl }}">
<div class="image ratio bg-cover"{% for image in post.image %} style="background-image:url({{site.baseurl}}/images/{{ image }});"{% endfor %}></div>
<h1 class="title p2 m0 absolute bold white bottom-0 left-0">{{ post.title }}</h1>
</a>
</div>
{% endfor %}
</div>
</div>
<div class="container mt4 mb4">
<div class="sm-col-6 mx-auto px3 sm-px4">
<p>Hello everyone!</p>
<p>My name's Ethan and you've just stumbled into my copy of <strong><a href="http://chowdown.io">Chowdown</a></strong>, a plain text recipe database for hackers. I've been searching for a free online recipe keeper/manager for a while. After finding Chowdown the search has stopped. Enjoy these recipes, which are some of my family's favorites. If you're interested in starting your own check out the URL above.</p>
<p>Happy cooking and recipe collecting.</p>
<p>Ethan Bell<br/><a href="http://twitter.com/ebell451">@ebell451</a></p>
</div>
</div>
</div>