diff options
author | Paul Duncan <pabs@pablotron.org> | 2021-10-16 11:34:14 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2021-10-16 11:34:14 -0400 |
commit | 3558c8b6d2cb59121e5295b7ae2505bb5d829acf (patch) | |
tree | 5bd8e338a8c61968a72d69d742d397020c2ec1fc /themes | |
parent | 7c978307d111cecc55369288988a8573e2d20f1c (diff) | |
download | pablotron.org-3558c8b6d2cb59121e5295b7ae2505bb5d829acf.tar.bz2 pablotron.org-3558c8b6d2cb59121e5295b7ae2505bb5d829acf.zip |
themes/hugo-pt2021/layouts/partials/project_summary.html: fix formatting, add tooltip to project description
Diffstat (limited to 'themes')
-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> |