forked from the-engine-room/library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (37 loc) · 1.91 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
---
layout: full
title: The Engine Room Library
show_footer: false
show_navbar: false
theme: table-of-contents
---
<div class="top row container">
<div class="three columns">
<a href="//www.theengineroom.org/" target="_blank"><img src="/images/logos/library-dark.png" width="220px"></a>
</div>
<div class="nine columns">
<p><a href="https://www.theengineroom.org">The Engine Room</a>'s Library collects what we're learning about using data and technology for social change. Each 'book' in the Library is a brief introduction to a topic, with links to other places where you can learn more.</p>
<p>We're always finding information through our direct support, community and research work that we think should be shared as widely as possible. So, we summarise what we've found, and present it in a simple, easy-to-understand way.</p>
<p>We try to keep every 'book' short, so that anyone can scroll through and quickly find what's relevant for them. We'd usually like to include a lot more information than we have space to include here. If you want to know more about a certain area, or think we should add something, <a href="http://theengineroom.org/contact/">get in touch</a>. We’d love to talk more.</p>
<p>The contents of all the books in our Library, and the code behind it, are all openly-licensed and available on <a href="https://github.com/the-engine-room/library">GitHub</a>. </p>
</div>
</div>
<hr>
<div class="container" id="books">
{% for book in site.books %}
{% capture u %}{% cycle 'odd', 'even' %}{% endcapture %}
{% if u == 'odd' or forloop.first %}
<div class="row">
{% endif %}
<div class="two columns">
<a href="{{book.url}}"><img src="{{ book.image }}" width="100px"></a>
</div>
<div class="four columns">
<h2><a href="{{book.url}}">{{ book.title }}</a></h2>
<p>{{ book.description }}</p>
</div>
{% if u == 'even' or forloop.last %}
</div>
{% endif %}
{% endfor %}
</div>