diff options
Diffstat (limited to 'themes/hugo-pt2021')
-rw-r--r-- | themes/hugo-pt2021/layouts/partials/project_summary.html | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/themes/hugo-pt2021/layouts/partials/project_summary.html b/themes/hugo-pt2021/layouts/partials/project_summary.html index 5155e3a..54811ac 100644 --- a/themes/hugo-pt2021/layouts/partials/project_summary.html +++ b/themes/hugo-pt2021/layouts/partials/project_summary.html @@ -1,9 +1,17 @@ <li> - <a href='{{.Permalink}}' title='{{.Title}}' aria-label='{{.Title}}'> + <a + href='{{.Permalink}}' + title='{{.Title}}' + aria-label='{{.Title}}' + > {{- .Title -}} - </a> + </a><!-- project-link --> - <p> + <p + class='project-text' + title='Project description.' + aria-label='Project description.' + > {{- .Params.text -}} - </p> + </p><!-- project-text --> </li> |