-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1448204
commit 0afde02
Showing
81 changed files
with
203 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
docs_list_title: book | ||
docs: | ||
|
||
- title: Manuscript (Google Doc) | ||
url: https://docs.google.com/document/d/1rruJsEF8-E3qTVCv0Giw2mK43HcNS4d7233rgGk9wjw/edit?usp=sharing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
docs_list_title: nav-home | ||
docs: | ||
|
||
- title: Contents | ||
url: /contents/ | ||
- title: About | ||
url: /about/ | ||
|
||
- title: Book | ||
url: /book/ | ||
|
||
- title: People | ||
url: /people/ | ||
- title: Contributors | ||
url: /contributors/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
docs_list_title: nav | ||
docs: | ||
|
||
- title: Contents | ||
url: /contents/ | ||
- title: About | ||
url: /about/ | ||
|
||
- title: Book | ||
url: /book/ | ||
- title: Book | ||
url: /book/ | ||
|
||
- title: People | ||
url: /people/ | ||
- title: Contributors | ||
url: /contributors/ | ||
|
||
- title: What they say | ||
url: /what-they-say/ | ||
- title: What they're saying | ||
url: /what-theyre-saying/ | ||
|
||
- title: News | ||
url: /news/ | ||
- title: News | ||
url: /news/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<div class="row"> | ||
<div class="col-12 col-sm-12 col-md-8 col-lg-8 col-xl-8"> | ||
{% if site.data.book.docs %} | ||
<ul class="list-unstyled list-inline mb-3 pb-3"> | ||
{% for item in site.data.book.docs %} | ||
{% if item.url %} | ||
<li class="list-inline-item"> | ||
<a href="{{ site.baseurl }}{{ item.url }}" class="btn btn-primary">{{ item.title }}</a> | ||
</li> | ||
{% endif %} | ||
{% endfor %} | ||
</ul> | ||
{% endif %} | ||
</div> | ||
<div class="col-12 col-sm-12 col-md-4 col-lg-4 col-xl-4"></div> | ||
</div> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
{% if content %} | ||
<div class="container border-bottom pb-5 mb-5"> | ||
<div class="row"> | ||
<div class="col-12 col-sm-12 col-md-3 col-lg-3 col-xl-3"></div> | ||
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-6"> | ||
{{ content }} | ||
</div> | ||
<div class="col-12 col-sm-12 col-md-3 col-lg-3 col-xl-3"></div> | ||
</div> | ||
</div> | ||
{% endif %} | ||
{% if site.data.contents.docs %} | ||
<div class="col-12"> | ||
<h2 class="mb-4">Contents</h2> | ||
{% for section in site.data.contents.docs %} | ||
<h3>{{ section.name | capitalize }}</h3> | ||
<div class="card-group mt-4 mb-5"> | ||
{% for chapter in section.chapters %} | ||
{% for item in site.contents %} | ||
{% if item.title == chapter %} | ||
{% include card-contents.html %} | ||
{% endif %} | ||
{% endfor %} | ||
{% endfor %} | ||
</div> | ||
{% endfor %} | ||
</div> | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.