-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (28 loc) · 1.01 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
---
layout: default
title: Welcome
---
<h1>World Classics Bookshelf</h1>
<p>Welcome. The world's greatest (literature) books in .txt.
Free books include:
</p>
{% for book in site.data.books %}
<p>
<b><a href="{{ book.path }}">{{ book.title }}</a></b>
by {{ book.author.name }}
<span style="font-size: 70%;">
(<a href="{{ book.github.url }}">Source in the Manuscripts book format</a>)
</span>
<a class="github-button" href="{{ book.github.url }}"
data-icon="octicon-star"
data-count-href="/{{ book.github.repo }}/stargazers"
data-count-api="/repos/{{ book.github.repo }}#stargazers_count"
data-count-aria-label="# stargazers on GitHub"
aria-label="Star {{ book.github.repo }} on GitHub">Star</a>
</p>
{% endfor %}
<!-- GitHub Buttons
Place this tag right after the last button or just before your close body tag.
see https://buttons.github.io
-->
<script async defer id="github-bjs" src="https://buttons.github.io/buttons.js"></script>