forked from CityOfPhiladelphia/patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1.1 KB
/
index.html
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
---
layout: default
---
<div class="home row">
<div class="small-24 columns">
<h1>Getting Started</h1>
<p>Check out the <a href="https://github.com/CityOfPhiladelphia/patterns">GitHub repository</a> for information on how to use these patterns in your project, or view the <a href="{{ "/boilerplate" | prepend: site.baseurl}}">Boilerplate</a> for example markup. </p>
<div id="pattern-search">
<input class="filter" type="search" placeholder="Filter pattern list">
<hr>
<ul class="list">
{% for pattern in site.patterns %}
<li class="pattern" id="p-{{ pattern.id }}">
<hgroup class="code">
<h2 class="title">{{ pattern.title }}</h2>
<h3>View Code</h3>
<i class="fa fa-arrow-circle-right"></i>
</hgroup>
<div class="the-code">
{% highlight html %}
{{ pattern.output }}
{% endhighlight %}
</div>
<p class="small-text">{{ pattern.description }}</p>
{{ pattern.output }}
</li>
{% endfor %}
</ul>
</div>
</div>
</div>