forked from rachelandrew/futuresimplesteps
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (53 loc) · 2.7 KB
/
index.html
File metadata and controls
63 lines (53 loc) · 2.7 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
---
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link href='https://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/github-dark.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>Future Simple Steps - where to find your favourite ex-Five Simple Steps authors and their books</title>
</head>
<body>
<div id="container">
<div class="inner">
<header>
<h1>Future Simple Steps</h1>
<h2>Where to find the authors and books of the now closed Five Simple Steps.</h2>
</header>
<hr>
<section id="main_content">
<p>The closure of Five Simple Steps means that many authors are selling their books from their own sites. Please support them by purchasing directly from them, and recommending the books you have found useful.</p>
<ul class="author-listing">
{% for book in site.books %}
<li class="book">
<h3>{{book.author-name}}</h3>
<div class="book__details">
<img src="images/{{book.book-slug}}_medium.jpg" alt="{{book.book-title}}{% if book.book-edition %} {{book.book-edition}} edition{% endif %} cover" class="book__image">
<div class="book__blurb">
{{book.content}}
<a class="book__buy" href="{{book.book-url}}">{% if book.free %}Read{% else %}Buy{% endif %} {{book.book-title}}{% if book.book-edition %} {{book.book-edition}} edition{% endif %}</a>
<ul class="book__links">
{% if book.author-website %}<li><a href="{{book.author-website}}">{{book.author-name-short}}'s website</a></li>{% endif %}
<li><a href="https://twitter.com/{{book.author-twitter}}">@{{book.author-twitter}}</a></li>
{% if book.author-twitter2 %}<li><a href="https://twitter.com/{{book.author-twitter2}}">@{{book.author-twitter2}}</a></li>{% endif %}
</ul>
</div>
</div>
</li>
{% endfor %}
</ul>
</section>
<footer>
This page was generated by <a href="https://pages.github.com">GitHub Pages</a>. Tactile theme by <a href="https://twitter.com/jasonlong">Jason Long</a>.
</footer>
</div>
</div>
</body>
</html>