forked from hrishikeshrt/jekyll-conference-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cfp.html
executable file
·55 lines (49 loc) · 1.83 KB
/
cfp.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
---
title: Call for Papers
layout: page
slide_id: 2
---
<div class="row mt-2">
<div class="col-sm-12 col-xs-12 col-md-6 col-lg-6 col-xl-6 text-justify">
<div class="conference-text">
<p class="lead">Call For Papers</p>
<p>{{site.data.cfp.description}}.</p>
<p>
You are requested to submit your research paper using the {{site.data.submission.portal}}:
<a href="{{site.data.submission.url}}">{{site.data.submission.url}}</a>.
</p>
<p>
The submissions must conform to the <a href="{{site.data.cfp.submission}}">Submission Guidelines</a>,
and must not exceed <b>{{site.data.submission.pagelimits[0].limit}}</b> pages including text, figures and references.
The submissions should include the title, abstract, and names and affiliations of all authors.
</p>
<p>
To prepare your submission, please use the LaTeX source files
listed on the website, and follow the instructions provided.
</p>
</div>
{% include card-important-dates.html %}
<div class="conference-text">
{% include contact-us.html %}
</div>
</div>
<div class="col-sm-12 col-xs-12 col-md-6 col-lg-6 col-xl-6 conference-text">
{% if site.data.cfp %}
<p>
The areas of interest include, but are not limited to:
</p>
<ul>
{% for area in site.data.cfp.areas %}
<li><b>{{area.category}}</b></li>
{% if area.topics %}
<ul>
{% for topic in area.topics %}
<li>{{topic}}</li>
{% endfor %}
</ul>
{% endif %}
{% endfor %}
</ul>
{% endif %}
</div>
</div>