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

24 lines
471 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
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>
{{ .Content }}
2022-10-26 09:28:33 -04:00
2022-12-27 22:34:31 -05:00
{{ partial "related" . }}
2022-08-29 10:50:32 -04:00
{{ end }}