make links page more intuitive

This commit is contained in:
yequari 2024-04-21 12:25:22 -07:00
parent f441717d5f
commit 90c04ab544
2 changed files with 8 additions and 3 deletions

View File

@ -4,7 +4,11 @@
<li> <li>
<details> <details>
<summary> <summary>
<a target="_blank" href="{{ .url }}" >{{ .name }}</a> {{ .name }}
<p>
{{ $u := urls.Parse .url }}
<a target="_blank" href="{{ .url }}" >{{ $u.Hostname }}</a>
</p>
</summary> </summary>
{{ .description }} {{ .description }}
</details> </details>

View File

@ -189,7 +189,7 @@ p.context {
} }
.wrapper { .wrapper {
max-width: 980px; max-width: 1024px;
margin: 0 auto; margin: 0 auto;
} }
@ -472,7 +472,8 @@ h3.index {
margin-bottom: 0.5em; margin-bottom: 0.5em;
} }
.link-list summary { .link-list summary p {
line-height: 1;
/* margin: -0.5em -0.5em 0; */ /* margin: -0.5em -0.5em 0; */
/* padding: 0.5em; */ /* padding: 0.5em; */
} }