Switch to using Hugo
This commit is contained in:
parent
03328460ae
commit
7caf09852c
29 changed files with 462 additions and 846 deletions
20
layouts/partials/projectCard.html
Normal file
20
layouts/partials/projectCard.html
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<div class="card">
|
||||
<h4 class="card-header">{{ .title }}</h4>
|
||||
<div class="card-body">
|
||||
{{ if .incomplete }}
|
||||
<p class="text-danger"><small>Incomplete</small></p>
|
||||
{{ end }}
|
||||
|
||||
{{ if isset . "description" }}
|
||||
<p>{{ .description | markdownify }}</p>
|
||||
{{ end }}
|
||||
|
||||
{{ if isset . "links" }}
|
||||
{{ range .links }}
|
||||
<a class="card-link" href="{{ .URL }}" target="_blank">
|
||||
{{ .title }}
|
||||
</a>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue