-
Notifications
You must be signed in to change notification settings - Fork 18
/
peoples.html
32 lines (30 loc) · 1006 Bytes
/
peoples.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
---
layout: default
title: Peoples
permalink: /peoples/
---
<div class="container col-md-8">
<h2 class="text-center">{{page.title}}</h2>
<p>
Rather than being a modern and strange "fad" diet, many cultures throughout
history and all around the globe have eaten meat-heavy, if not exclusive diets.
Below are cultures with quotes about their dietary practices. Not all are
necessarily fully carnivorous, but they show that humans, and perhaps all
humans, can not only survive, but thrive, on a diet composed primarily of
animal-based foods.
</p>
</div>
<div class="container-fluid people-list col-md-8">
{% assign places = site.peoples | group_by: 'place' | sort: 'name' %}
{% for place in places %}
<div>
<h3>{{ place.name }}</h3>
<ul>
{% for people in place.items %}
<li><a href="{{ site.baseurl }}{{ people.url }}">{{ people.title }}</a></li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
<p class="text-center"><a href="/">Home</a></p>