forked from pact2023/pact2023.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (47 loc) · 1.44 KB
/
index.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
---
## front matter tells Jekyll to process this as a Liquid template
title: PACT 2023
id: home
---
<!doctype html>
<html lang="en">
{% include head.html %}
<body>
<div class="container">
{% include header.html %}
{% include index_hero.html %}
<div class="row mb-3">
<!-- main page content -->
<div class="col-md-8">
{% include index_news.html %}
<br>
<br>
<h2>
<a href="{{site.baseUrl}}/submit">Call for Papers</a>
</h2>
<br>
<h2>
<a href="{{site.baseUrl}}/workshops">Call for Workshops/Tutorials</a>
</h2>
<br>
<h2>
<a href="{{site.baseUrl}}/src">Call for Student Research Competition Abstracts</a>
</h2>
<!--
{% capture call_for_papers %}{% include call_for_papers.md %} {% endcapture %}
{{ call_for_papers | markdownify }}
-->
<!--
{% capture call_for_posters %}{% include call_for_posters.md %} {% endcapture %}
{{ call_for_posters | markdownify }}
-->
</div>
<!-- sidebar -->
<div class="col-md-4">
{% include sidebar.html %}
</div>
</div>
{% include footer.html %}
</div> <!-- main container -->
</body>
</html>