-
Notifications
You must be signed in to change notification settings - Fork 1
/
knowledge.html
executable file
·119 lines (101 loc) · 3.24 KB
/
knowledge.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
---
layout: default
title: Knowledge
---
<head>
{% include head.html %}
<title>Knowledge Resources | OnePwaa</title>
<meta
name="twitter:image"
content="/assets/img/88225255_10111594243599681_3889394766894333952_o.jpg"
/>
<meta
name="twitter:description"
content="Explore this year's World Scholar's Cup curriculum with OnePwaa's experienced scholars."
/>
<meta
property="og:image"
content="/assets/img/88225255_10111594243599681_3889394766894333952_o.jpg"
/>
<meta
name="description"
content="Explore this year's World Scholar's Cup curriculum with OnePwaa's experienced scholars."
/>
<meta property="og:type" content="website" />
<meta name="twitter:title" content="Knowledge Resources | OnePwaa" />
<meta name="twitter:card" content="summary_large_image" />
</head>
{% include standard-navbar.html %}
<section class="text-dark bg-white" id="about" style="padding: 64px 0px">
<div class="container" style="margin-top: 30px">
<h3 id="guides" class="pl-10">Study Guides</h3>
<i class="pl-10"
>Jump to <a href="#deep-dives">here for Deep Dives</a> and
<a href="#essay">here for Essays</a>.</i
>
<div class="row no-gutters">
{% for post in site.posts %} {% if post.topic == "study-guide" %}
<div
class="col-sm-6 col-lg-4"
style="padding-bottom: 10px; padding-top: 10px"
>
<a href="{{ post.url }}">
<img class="img-fluid" src="{{ post.image }}" />
<center>
<div class="project-name" class="pt-10">
<span class="dark-text"><strong>{{ post.title }}</strong></span>
</div>
</center>
</a>
</div>
{% endif %} {% endfor %}
</div>
<br />
<h3 id="deep-dives" class="pl-10">Deep Dives</h3>
<i class="pl-10"
>Jump to <a href="#essay">here for Essays</a> and
<a href="#guides">here for Study Guides</a>.</i
>
<div class="row no-gutters">
{% for post in site.posts %} {% if post.topic == "deep-dives" %}
<div
class="col-sm-6 col-lg-4"
style="padding-bottom: 10px; padding-top: 10px"
>
<a href="{{ post.url }}">
<img class="img-fluid" src="{{ post.image }}" />
<center>
<div class="project-name" class="pt-10">
<span><strong>{{ post.title }}</strong></span>
</div>
</center>
</a>
</div>
{% endif %} {% endfor %}
</div>
<br />
<h3 id="essay" class="pl-10">Essays</h3>
<i class="pl-10"
>Jump to <a href="#deep-dives">here for Deep Dives</a> and
<a href="#guides">here for Study Guides</a>.</i
>
<div class="row no-gutters">
{% for post in site.posts %} {% if post.topic == "essay" %}
<div
class="col-sm-6 col-lg-4"
style="padding-bottom: 10px; padding-top: 10px"
>
<a href="{{ post.url }}">
<img class="img-fluid" src="{{ post.image }}" />
<center>
<div class="project-name" class="pt-10">
<span class="dark-text"><strong>{{ post.title }}</strong></span>
</div>
</center>
</a>
</div>
{% endif %} {% endfor %}
</div>
</div>
</section>
{% include footer.html %}