forked from JesperDramsch/python-deadlines
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.html
More file actions
83 lines (79 loc) · 2.65 KB
/
Copy pathresources.html
File metadata and controls
83 lines (79 loc) · 2.65 KB
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
---
namespace: resources
permalink: /resources/
permalink_de: /ressourcen/
permalink_es: /recursos/
permalink_fr: /ressources/
permalink_pt-br: /recursos/
permalink_zh-cn: /资源/
permalink_ru: /ресурсы/
permalink_id: /sumber-daya/
permalink_hi: /संसाधन/
title: titles.resources
---
<html>
<head>
{% include head.html %}
</head>
<body>
{% include header.html %}
{% capture ress_title %}
{% t titles.resources %}
{% endcapture %}
{% capture ress_hook %}
{% tf frontpage/hook.md %}
{% endcapture %}
{% capture ress_description %}
{% tf resources/description.md %}
{% endcapture %}
{% include masthead.html url=page.url title=ress_title hook=ress_hook description=ress_description %}
<div style="background: linear-gradient(135deg, #4B8BBE 0%, #306998 100%); padding: 1.5rem 0;">
<div class="container">
<div class="row align-items-center">
<div class="col-md-8">
<h4 style="color: #fff; margin-bottom: 0.25rem;">Want to submit your first conference talk?</h4>
<p style="color: rgba(255,255,255,0.9); margin-bottom: 0;">Our free 5-lesson email course walks you from idea to accepted proposal.</p>
</div>
<div class="col-md-4 text-md-right mt-2 mt-md-0">
<a href="/course/" class="btn btn-warning btn-lg">Start Free Course</a>
</div>
</div>
</div>
</div>
<div class="container">
<div id="confs">
<div id="past_confs">
{% for post in site.posts %}
<div id="{{conf.conference | slugify: "latin"}}-{{conf.year}}" class="ConfItem">
<div class="row conf-row">
<div class="col-12">
<span class="conf-title">
<a title="{{ post.title }}" href="{{ post.url }}">{{ post.title }}</a>
</span>
<span class="conf-title-small">
<a title="{{post.title}}" href="{{ post.url }}">{{post.title}}</a>
</span>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="meta">
<strong>Tags:</strong> {{ post.tags | sort | join:", " }}
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<span class="conf-date">{{post.excerpt}}</span>
</div>
</div>
<hr>
</div>
{% endfor %}
</div>
</div>
</div>
<footer>{% include_cached footer.html %}</footer>
{% include sneks.html %}
</body>
</html>