-
Notifications
You must be signed in to change notification settings - Fork 47
/
index.html
49 lines (46 loc) · 1.68 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
---
layout: default
---
<section id="content" class="bg-dark">
<div class="cfp-heading">
<h1 class="section-heading text-center text-white">Call for Papers</h1>
<h3 class="section-subheading text-center text-white">School of Cyber Science and Engineering, Sichuan University</h3>
</div>
<div class="cfp-list shuffle">
{% assign pc = 0 %}
{% for p in site.pages %}
{% if p.path contains "cfp/" and p.final %}
{% assign pc = pc | plus: 1 %}
{{ pc }}
{% assign cprefix = "collapse-cfp" %}
<div class="container">
<div class="cfp-item text-white" id="{{p.shorttitle}}">
<div class="cfp-meta">
<h3><a data-bs-toggle="collapse" href="#{{cprefix}}{{pc}}" class="link-light text-decoration-none" role="button" aria-expanded="false" aria-controls="{{cprefix}}{{pc}}">{{p.title | upcase}}</a></h3>
<div class="meta-item text-white">
<label>ORGANIZERS:</label>
<ul>
{% for person in p.organizers %}
<li>{{person.name | upcase}}</li>
{% endfor %}
</ul>
</div>
</div>
<div id="{{cprefix}}{{pc}}" class="collapse">
<div class="cfp-content bg-secondary">
<div class="container">
<!-- <iframe seamless="seamless" src="{{p.url}}" description="{{p.shorttitle}}">
</iframe> -->
{{p.content | markdownify}}
</div>
<a class="colbtn bg-dark link-light text-decoration-none" href="#{{p.shorttitle}}">⤴</a>
</div>
</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
<div class="cfp-heading"></div>
<div class="cfp-heading"></div>
</section>