-
Notifications
You must be signed in to change notification settings - Fork 28
/
index.html
46 lines (45 loc) · 1.04 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
---
layout: default
body_class: dynamic-nav
is_home: true
nav:
- name: "Book"
title: "About the book"
url: "#whats-in-the-book"
- name: "Reviews"
title: "What people are saying"
url: "#reviews"
- name: "Author"
title: "About the author"
url: "#about-author"
- name: "Buy"
title: "Get the book"
url: "#buy-now"
- name: "News"
title: "News"
url: "#news"
- name: "Resources"
title: "Startup resources"
url: "#resources"
---
<header class="gray-section">
{% include blurb.html %}
</header>
<section id="whats-in-the-book">
{% include book-outline.html %}
</section>
<section id="reviews" class="gray-section gray-gradient">
{% include reviews.html %}
</section>
<section id="about-author">
{% include about-author.html %}
</section>
<section id="buy-now" class="gray-section gray-gradient">
{% include buy-now.html %}
</section>
<section id="news">
{% include news.html %}
</section>
<section id="resources" class="gray-section gray-gradient">
{% include startup-resources.html %}
</section>