redstrate.com/themes/red/layouts/_default/project.html

28 lines
521 B
HTML
Raw Normal View History

2022-08-29 10:50:32 -04:00
{{ define "main" }}
2022-12-27 22:34:31 -05:00
<h2>{{ .Title }}</h2>
2022-08-29 10:50:32 -04:00
2023-03-01 14:02:08 -05:00
{{ if $.Param "source" }}
2022-12-27 22:34:31 -05:00
<table>
{{ with $.Param "source" }}
<tr>
<td>Source Code</td>
<td><a href='{{ . }}'>{{ . }}</a></td>
</tr>
{{ end }}
2022-08-29 10:50:32 -04:00
2022-12-27 22:34:31 -05:00
{{ with $.Param "license" }}
<tr>
<td>License</td>
<td>{{ . }}</td>
</tr>
{{ end }}
</table>
2023-03-01 14:02:08 -05:00
{{ end }}
<p>{{ .Summary }}</p>
<hr>
2022-12-27 22:34:31 -05:00
{{ .Content }}
2022-08-29 10:50:32 -04:00
{{ end }}