Started building a Website with Jekyll based on Uno-Timeline
This commit is contained in:
commit
2d9e9fb878
103 changed files with 6371 additions and 0 deletions
33
index.html
Normal file
33
index.html
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
---
|
||||
layout: default
|
||||
robots: noindex
|
||||
---
|
||||
<ul class="timeline">
|
||||
{% for project in site.data.projects %}
|
||||
<li class="timeline-inverted">
|
||||
<div class="timeline-image">
|
||||
<a href="{{ project.url }}" target="_blank" style="display: flex; width: 100%; height: 100%; align-items: center; justify-content: center;">
|
||||
<img class="img-me" src="{{ project.img | prepend: site.baseurl }}" alt="">
|
||||
</a>
|
||||
</div>
|
||||
<div class="timeline-panel">
|
||||
<div class="timeline-heading">
|
||||
<h4>
|
||||
<a href="{{ project.url }}" target="_blank">
|
||||
{{ project.name }}
|
||||
</a>
|
||||
</h4>
|
||||
</div>
|
||||
<div class="timeline-body">
|
||||
{% if project.desc %}
|
||||
{{ project.desc | markdownify }}
|
||||
{% else %}
|
||||
<div repotext="{{ project.repo }}">
|
||||
<span class="desc"></span>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
Loading…
Add table
Add a link
Reference in a new issue