加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
all.html 1.60 KB
一键复制 编辑 原始数据 按行查看 历史
Kai Gao 提交于 2021-05-19 14:31 . Revise the final CFP
---
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/" %}
{% 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}}">&#10548;</a>
</div>
</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
</section>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化