init portfolio
Some checks failed
Build / Deploy (push) Failing after 1m55s
Some checks failed
Build / Deploy (push) Failing after 1m55s
This commit is contained in:
parent
445069cbf8
commit
c12d34a822
18 changed files with 109 additions and 2 deletions
19
content/pages/portfolio.njk
Normal file
19
content/pages/portfolio.njk
Normal file
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
title: 'Portfolio'
|
||||
permalink: "/portfolio/"
|
||||
---
|
||||
<h1>Portfolio</h1>
|
||||
{% for portfolioItem in collections.portfolio %}
|
||||
<div class="portfolio-list-item">
|
||||
<div class="portfolio-list-item-header">
|
||||
<h2>{{portfolioItem.data.title}}</h2>
|
||||
- {{portfolioItem.data.description}}
|
||||
</div>
|
||||
<div class="flex">
|
||||
{% for image in portfolioItem.data.images | slice(3) %}
|
||||
|
||||
<img src="{{image}}" alt="" />
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
Loading…
Add table
Add a link
Reference in a new issue