-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
55 lines (55 loc) · 2.24 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
layout: default
---
<div class="wrapper pure-g">
<div class="col-md-4 col-xs-12 no-padder">
<div class="box box-1 bg-2">
<h1>Devcenter Square</h1>
<h4>is a community of over 2,400+ African software designers and developers collaborating, learning and working on open source and sponsored projects.</h4>
<br>
<h4>Scroll through and see the open source projects built by our community</h4>
<p><a href="http://bit.ly/dcs-wiki">Read more and join us on Slack</a></p>
<p>Created by <a href="https://www.devcenter.co/community" title="Devcenter">the Devcenter community</a> with ❤️</p>
</div>
</div>
{% for post in site.posts %}
<div class="col-md-4 col-xs-12 no-padder">
<div class="box box-{{post.color_id}} bg-{{post.color_id}}">
<h5>Built with {{post.language}}</h5>
<h3>{{post.title}}</h3>
<h4>{{post.summary}}</h4>
<ul class="links">
{% if post.completed %}
<li><a href="{{post.github}}">GitHub</a> <span>/</span> <a href="{{ post.url | prepend: site.baseurl }}">Docs</a></li>
{% else %}
<li><span>Soon, Soon.</span></li>
{% endif %}
</ul>
</div>
</div>
{% endfor %}
<!-- <div class="col-md-4 col-xs-12 no-padder">
<div class="box box-3 bg-3">
<h5>Building with Javascript</h5>
<h3>States&Cities</h3>
<h4>We’re creating a simple dump for states and cities in Nigeria. Get data as JSON, XML or via an endpoint</h4>
<ul class="links">
<li><span>Soon, Soon.</span></li>
</ul>
</div>
</div> -->
</div>
<!-- <div class="home">
<h1 class="page-heading">Posts</h1>
<ul class="post-list">
{% for post in site.posts %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
</li>
{% endfor %}
</ul>
<p class="rss-subscribe">subscribe <a href="{{ " /feed.xml " | prepend: site.baseurl }}">via RSS</a></p>
</div> -->