feat: better project links generation
This commit is contained in:
parent
fbb8b3d3e8
commit
c57ba5c01b
|
@ -58,10 +58,6 @@ section {
|
||||||
padding-left: 1em;
|
padding-left: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
section > a {
|
|
||||||
padding-left: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
section > p {
|
section > p {
|
||||||
padding-left: 1em;
|
padding-left: 1em;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -71,6 +67,15 @@ section > h3 {
|
||||||
margin-bottom: .3em;
|
margin-bottom: .3em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.project-links {
|
||||||
|
padding-left: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.project-links > a {
|
||||||
|
padding-left: .3em;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
margin: 1em 0 .3em 0;
|
margin: 1em 0 .3em 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,8 +54,15 @@ permalink: "resume/{{ resume.locale }}/index.html"
|
||||||
<section>
|
<section>
|
||||||
<h3>{{ project.title }}</h3>
|
<h3>{{ project.title }}</h3>
|
||||||
<p>{{ project.description }}</p>
|
<p>{{ project.description }}</p>
|
||||||
<a class="fa fa-file-pdf-o" href="{{ project.pdf }}">
|
|
||||||
{{ resume.report }}</a>
|
<div class="project-links">
|
||||||
|
{% if project.pdf %}
|
||||||
|
<a class="fa fa-file-pdf-o" href="{{ project.pdf }}"></a>
|
||||||
|
{% endif %}
|
||||||
|
{% if project.repo %}
|
||||||
|
<a class="fa fa-gitlab" href="{{ project.repo }}"></a>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
@ -66,6 +73,14 @@ permalink: "resume/{{ resume.locale }}/index.html"
|
||||||
<section>
|
<section>
|
||||||
<h3>{{ project.title }}</h3>
|
<h3>{{ project.title }}</h3>
|
||||||
<p>{{ project.description }}</p>
|
<p>{{ project.description }}</p>
|
||||||
|
<div class="project-links">
|
||||||
|
{% if project.pdf %}
|
||||||
|
<a class="fa fa-file-pdf-o" href="{{ project.pdf }}"></a>
|
||||||
|
{% endif %}
|
||||||
|
{% if project.repo %}
|
||||||
|
<a class="fa fa-gitlab" href="{{ project.repo }}"></a>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
|
Reference in a new issue