Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src/static/stylus/home.styl
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,19 @@ body
.color-header
color #4a4a4a

#cite-container
padding 2em
align-items left


#cite-container .row
margin 2em
padding 1em !important
background-color #F8F9FA

#cite-container pre
text-align left

.footer.segment
padding 2em
margin 1em 7.5em
Expand Down
28 changes: 27 additions & 1 deletion src/templates/pages/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h3 class="ui icon header">
<div class="home-wrap">
<front-page-competitions></front-page-competitions>


<!-- Action Section -->
<div id="action-container" class="segment-container ui segment full-width">
<div class="ui header">
About CodaBench
Expand Down Expand Up @@ -68,6 +68,7 @@ <h3 class="ui icon header">
</div>
</div>

<!-- Stats section -->
<div class="ui five column grid" id="general-stats">
{% for stat in general_stats %}
<div class="column">
Expand All @@ -83,6 +84,7 @@ <h3 class="ui icon header">
{% endfor %}
</div>

<!-- About Section -->
<div id="about-container" class="segment-container ui segment full-width">
<div class="ui header">
About CodaBench
Expand Down Expand Up @@ -330,6 +332,30 @@ <h3>Homework</h3></a>
</div>
</div>
</div>

<!-- Citation Section -->
<div id="cite-container" class="segment-container ui segment full-width">
<div class="ui header">
Cite Codabench in your research
</div>
<div class="row container-content">
<pre>
@article{codabench,
title = {Codabench: Flexible, easy-to-use, and reproducible meta-benchmark platform},
author = {Zhen Xu and Sergio Escalera and Adrien Pavão and Magali Richard and
Wei-Wei Tu and Quanming Yao and Huan Zhao and Isabelle Guyon},
journal = {Patterns},
volume = {3},
number = {7},
pages = {100543},
year = {2022},
issn = {2666-3899},
doi = {<a href="https://doi.org/10.1016/j.patter.2022.100543" target="_blank">https://doi.org/10.1016/j.patter.2022.100543</a>},
url = {<a href="https://www.sciencedirect.com/science/article/pii/S2666389922001465" target="_blank">https://www.sciencedirect.com/science/article/pii/S2666389922001465</a>}
} </pre>
</div>
</div>

</div>
{% endblock %}

Expand Down