mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-01 18:00:26 +00:00
21 lines
577 B
HTML
21 lines
577 B
HTML
{{ $styles := resources.Get "css/partials/project-card.css" | toCSS | minify }}
|
|
|
|
<link rel="stylesheet" href="{{ $styles.Permalink }}" />
|
|
|
|
<article>
|
|
<div>
|
|
<h3>{{ .Title }}</h3>
|
|
<p>{{ .Params.description }}</p>
|
|
<div id="links">
|
|
<a class="read-more" href="{{ .Permalink }}">
|
|
Read more {{ readFile "assets/icons/arrow.svg" | safeHTML }}
|
|
</a>
|
|
{{ with .Params.demo }}
|
|
<a class="demo" href="{{ . }}" target="_blank">
|
|
Demo {{ readFile "assets/icons/eye.svg" | safeHTML }}
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</article>
|