added publications and education in main; more config
added config option to remove about section in sidebar added config option to not show education in main (as it is shown in the sidebar anyway) increased with of sidebar for longer names reduced padding for footer
This commit is contained in:
21
_includes/publications.html
Normal file
21
_includes/publications.html
Normal file
@ -0,0 +1,21 @@
|
||||
{% if site.data.publications %}
|
||||
<section class="section publications-section">
|
||||
|
||||
<h2 class="section-title"><i class="fa fa-file-text"></i>Publications</h2>
|
||||
|
||||
{% for intro in site.data.publications %}
|
||||
<div class="intro">
|
||||
<p>{{ intro.description }}</p>
|
||||
</div><!--//intro-->
|
||||
{% endfor%}
|
||||
|
||||
{% for publication in site.data.publications %}
|
||||
<div class="item">
|
||||
<div class="publication-title">{{ publication.title }}</div>
|
||||
<div class="publication-authors">{{ publication.authors }}</div>
|
||||
<div class="publication-conference">{{ publication.conference }}</div>
|
||||
</div><!--//item-->
|
||||
{% endfor %}
|
||||
|
||||
</section><!--//section-->
|
||||
{% endif %}
|
Reference in New Issue
Block a user