aesthetic updates and banner

This commit is contained in:
2025-06-13 13:08:43 -06:00
parent 64a28d4914
commit 09a787272b
7 changed files with 95 additions and 24 deletions

View File

@ -0,0 +1 @@
<a href="{{ .Destination | safeURL }}"{{ with .Title}} title="{{ . }}"{{ end }}{{ if or (strings.HasPrefix .Destination "http") (strings.HasPrefix .Destination "https") }} target="_blank"{{ end }} >{{ .Text | safeHTML }}</a>

View File

@ -0,0 +1,5 @@
<div class="banner">
<span class="banner-text">{{ .Site.Params.bannerTitle }}
{{ .Site.Params.banner | markdownify }}
</span>
</div>

View File

@ -1,3 +1,4 @@
<p><a href="/contribute">Contribute</a> &nbsp;|&nbsp; <a href="/about">About</a> &nbsp;|&nbsp; <a href="/license">License</a> &nbsp;|&nbsp; <a href="/privacy">Privacy</a> </p>
<!-- <p>Open-source under <a href="">MIT License</a></p> -->
<!-- <p>The information on this website is presented for educational purposes only.</p> -->
<p>&copy; Copyright {{ now.Year }}. An open-source project.</p>

View File

@ -4,6 +4,9 @@
{{ partial "head.html" . }}
</head>
<body>
{{ if .Site.Params.banner }}
{{ partial "banner.html" . }}
{{ end }}
<header>
{{ partial "header.html" . }}
</header>

View File

@ -37,7 +37,7 @@
</a>
</td>
<td>
{{ range $term := $terms }}
{{ range $term := sort $terms }}
{{ partial "term-link.html" (dict "name" $term "taxonomy" $taxonomyname) }}
{{ end }}
</td>
@ -91,8 +91,8 @@
<div class="footer-links" style="text-align: left;">
Help improve this page!<br/>
Submit an
<a href="https://gitmoss.fyi/fmtools/content/issues/new?template=.gitea%2fissue_template%2ffix_tool.md&title=[FIX]%20{{ .Title | urlquery }}">issue</a> or
<a href="https://gitmoss.fyi/fmtools/content/fork">pull request</a>.
<a href="https://gitmoss.fyi/fmtools/content/issues/new?template=.gitea%2fissue_template%2ffix_tool.md&title=[FIX]%20{{ .Title | urlquery }}" target="_blank">issue</a> or
<a href="https://gitmoss.fyi/fmtools/content/fork" target="_blank">pull request</a>.
</div>
{{ if .Date }}
<div class="footer-date" style="text-align: right;">

View File

@ -42,8 +42,9 @@
<tr>
<th>Tool</th>
<th>Applications</th>
<th>License</th>
<th>Licenses</th>
<!-- <th>Developers</th> -->
<!-- <th>Description</th> -->
</tr>
</thead>
<tbody>
@ -54,7 +55,7 @@
{{ if in .Params.maintenance "Not Maintained" }}
<div style="display: flex; align-items: center; gap: 8px;">
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
<span style="display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: rgb(10,10,10); border: 1px solid rgb(80, 80, 80);"></span>
<span style="display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: rgb(128, 28, 28);"></span>
</div>
{{ else }}
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
@ -76,37 +77,42 @@
<td>
{{ $sep := "" }}
{{ range $key, $vals := .Params }}
{{ if (in (slice "licenses") $key) }}
{{ $sep }}
{{ range $i, $val := $vals }}
{{ partial "term-link.html" (dict "name" $val "taxonomy" $key) }}
{{ end }}
{{ $sep = "; " }}
{{ end }}
{{ if (in (slice "licenses") $key) }}
{{ $sep }}
{{ range $i, $val := $vals }}
{{ partial "term-link.html" (dict "name" $val "taxonomy" $key) }}
{{ end }}
{{ $sep = "; " }}
{{ end }}
{{ end }}
</td>
<!-- <td>
{{ $sep := "" }}
{{ range $key, $vals := .Params }}
{{ if (in (slice "developers") $key) }}
{{ $sep }}
{{ range $i, $val := $vals }}
{{ partial "term-link.html" (dict "name" $val "taxonomy" $key) }}
{{ end }}
{{ $sep = "; " }}
{{ end }}
{{ if (in (slice "developers") $key) }}
{{ $sep }}
{{ range $i, $val := $vals }}
{{ partial "term-link.html" (dict "name" $val "taxonomy" $key) }}
{{ end }}
{{ $sep = "; " }}
{{ end }}
{{ end }}
</td> -->
<!-- <td class="description">{{ .Content | plainify | truncate 40 }}</td> -->
</tr>
{{ end }}
</tbody>
</table>
<div style="display: flex; align-items: center; gap: 8px; margin: .5rem 0;">
<span style="display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: rgb(0,0,0); border: 1px solid rgb(80, 80, 80);"></span>
<span style="color: rgb(150, 150, 150); font-size: 1rem;">Black dot indicates tool has not been maintained recently</span>
<div style="display: flex; align-items: center; gap: 8px; margin: 1rem 0 0 0;">
<span style="display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: rgb(128, 28, 28);"></span>
<span style="color: rgb(128, 28, 28); font-size: 1rem;">Red dot indicates tool has not been updated or maintained recently</span>
</div>
<!-- <div style="display: flex; align-items: center; gap: 8px; margin: 0;">
<span style="display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: rgb(143, 96, 15);"></span>
<span style="color: rgb(150, 150, 150); font-size: 1rem;">Orange dot indicates closed-source or restrictively licensed tool</span>
</div> -->
{{ end }}