-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcustom-series-all.hbs
49 lines (49 loc) · 1.81 KB
/
custom-series-all.hbs
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
{{!< default}}
{{#page}}
<header class="series-all-info-card">
<h1 class="title">{{{title}}}</h1>
<p>{{content}}</p>
</header>
<main class="series-all">
<h2 class="series-section-title">Software Engineering</h2>
<div class="series-feed">
{{#get "tags" limit="all"
filter="slug:[build-flask-apps,graphql-hype,mastering-sqlalchemy,working-with-mysql,starting-django,python-concurrency-with-asyncio]"
include="count.posts" order="count.posts desc" }}
{{#foreach tags visibility="internal"}}
{{> "series/series-card" }}
{{/foreach}}
{{/get}}
</div>
<h2 class="series-section-title">Data Science & Engineering</h2>
<div class="series-feed">
{{#get "tags" limit="all"
filter="slug:[data-analysis-pandas,learning-apache-spark,mapping-data-with-mapbox,web-scraping-with-python,welcome-to-sql]"
include="count.posts" order="count.posts desc" }}
{{#foreach tags visibility="internal"}}
{{> "series/series-card" }}
{{/foreach}}
{{/get}}
</div>
<h2 class="series-section-title">Data Analysis</h2>
<div class="series-feed">
{{#get "tags" limit="all"
filter="slug:[adventures-in-excel,hacking-tableau-server,microsoft-powerpivot]"
include="count.posts" order="count.posts desc" }}
{{#foreach tags visibility="internal"}}
{{> "series/series-card" }}
{{/foreach}}
{{/get}}
</div>
<h2 class="series-section-title">Cloud Architecture</h2>
<div class="series-feed">
{{#get "tags" limit="all"
filter="slug:[create-an-aws-api,mongodb-cloud]"
include="count.posts" order="count.posts desc" }}
{{#foreach tags visibility="internal"}}
{{> "series/series-card" }}
{{/foreach}}
{{/get}}
</div>
</main>
{{/page}}