mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-23 12:52:10 +00:00
Fix some markup
- Put headings outside of links in SERP - fix a <div> wrapping issue in the about page - Mark up the result excerpts with a <q> element.
This commit is contained in:
parent
6042b0bdaf
commit
acfffd3754
3 changed files with 11 additions and 11 deletions
|
@ -7,6 +7,7 @@ outputs:
|
|||
- gemtext
|
||||
description: "Get to know Rohan Kumar, also known as Seirdy. Contact info, my projects, interests, online accounts, etc."
|
||||
---
|
||||
<div itemscope="" itemprop="about" itemtype="https://schema.org/Person" itemid="https://seirdy.one/#seirdy" class="h-card vcard">
|
||||
|
||||
I'm known as Rohan and as Seirdy. There are some differences between these personas, but the line between the two is blurry. It's fine to mix them up.
|
||||
|
||||
|
@ -75,8 +76,7 @@ Chat
|
|||
: IRC: "Seirdy" on many networks (Liberachat, Snoonet, OFTC, Tilde.Chat, apionet, some others)
|
||||
: Matrix: [@seirdy<wbr />:seirdy.one](matrix:u/seirdy:seirdy.one "class='u-impp u-url' rel='me'")
|
||||
|
||||
At least two platforms listed in the "Social (centralized)" category are not endorsed, and I'm trying to wind down my use of them.
|
||||
If you find a "Seirdy" somewhere else and don't know whether or not it's me, please contact me and ask instead of assuming that it must be me.
|
||||
At least two platforms listed in the "Social (centralized)" category are not endorsed, and I'm trying to wind down my use of them. If you find a "Seirdy" somewhere else and don't know whether or not it's me, please contact me and ask instead of assuming that it must be me.
|
||||
|
||||
I used to have the Matrix ID `@seirdy:envs.net`. I sometimes use `@seirdy:fairydust.space` for technical reasons (seirdy.one runs a Conduit server but certain features only work in Synapse rooms).
|
||||
|
||||
|
@ -155,5 +155,3 @@ Content on this site also appears on <a rel="alternate" href="gemini://seirdy.on
|
|||
|
||||
I have a [Tor hidden Web service](http://wgq3bd2kqoybhstp77i3wrzbfnsyd27wt34psaja4grqiezqircorkyd.onion/ "{rel='alternate' class='u-syndication'}") which mirrors this site's contents, except for the fact that it replaces some SVGs with PNGs.
|
||||
|
||||
<div itemscope="" itemtype="https://schema.org/Person" itemid="https://seirdy.one/#seirdy" class="h-card vcard">
|
||||
|
||||
|
|
|
@ -4,17 +4,17 @@
|
|||
<ol>
|
||||
{{- range .Results }}
|
||||
<li>
|
||||
<a href="{{ .URL }}">
|
||||
<h2>
|
||||
<a href="{{ .URL }}">
|
||||
{{ if .Title -}}
|
||||
{{- .Title }}
|
||||
{{ else -}}
|
||||
{{- .URL }}
|
||||
{{- end }}
|
||||
</h2>
|
||||
</a>
|
||||
</h2>
|
||||
<p>{{ printf "%.200s" .Desc }}</p>
|
||||
<p>
|
||||
<p><q cite="{{ .URL }}">
|
||||
{{ $isMatch := false }}
|
||||
{{ range .Frag }}
|
||||
{{ if $isMatch }}<strong>{{ end -}}
|
||||
|
@ -22,7 +22,7 @@
|
|||
{{- if $isMatch }}</strong>{{ end }}
|
||||
{{ $isMatch = (not $isMatch) }}
|
||||
{{ end }}
|
||||
</p>
|
||||
</q></p>
|
||||
</li>
|
||||
{{- end }}
|
||||
</ol>
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
(.message == "Text not allowed in element “ol” in this context.")
|
||||
or
|
||||
(.message == "Bad value “{{ .URL }}” for attribute “href” on element “a”: Illegal character in path segment: “{” is not allowed.")
|
||||
or
|
||||
(.message == "Bad value “{{ .URL }}” for attribute “cite” on element “q”: Illegal character in path segment: “{” is not allowed.")
|
||||
)
|
||||
and (
|
||||
(.extract | test("{{"))
|
||||
|
|
Loading…
Reference in a new issue