diff options
| author | lost+skunk <[email protected]> | 2024-07-13 21:32:04 +0300 |
|---|---|---|
| committer | lost+skunk <[email protected]> | 2024-07-13 21:32:04 +0300 |
| commit | 667de65e2fda7cb30ec886ccf6619a4178d5488b (patch) | |
| tree | 72458bc795e31a3a6c8aadada91b71d5ff3acbf5 /html/about.htm | |
| parent | 8391cc34a95a82cf025b96e4352246a245d06d61 (diff) | |
| download | skunky-art-667de65e2fda7cb30ec886ccf6619a4178d5488b.tar.gz skunky-art-667de65e2fda7cb30ec886ccf6619a4178d5488b.tar.bz2 skunky-art-667de65e2fda7cb30ec886ccf6619a4178d5488b.zip | |
v1.3
Diffstat (limited to 'html/about.htm')
| -rw-r--r-- | html/about.htm | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/html/about.htm b/html/about.htm index 0495bb5..54e5418 100644 --- a/html/about.htm +++ b/html/about.htm @@ -2,7 +2,7 @@ <html> <head> <title>SkunkyArt</title> - <link rel="stylesheet" href="{{.BasePath}}gui/css/skunky.css"> + <link rel="stylesheet" href="{{.BasePath}}stylesheet"> </head> <main> <header> @@ -20,11 +20,44 @@ <p> SkunkyArt is an alternative frontend for deviantart.com, written in Go. </p> + <h3><a href="https://go.kde.org/matrix/#/#skunkyart:ebloid.ru" target="_blank">Room in Matrix</a></h3> <h2>Instance settings:</h2> <ul> <li><b>NSFW</b>: <span class="about-{{.Templates.About.Nsfw}}">{{if .Templates.About.Nsfw}}YES{{else}}NO{{end}}</span></li> <li><b>Proxyfing</b>: <span class="about-{{.Templates.About.Proxy}}">{{if .Templates.About.Proxy}}YES{{else}}NO{{end}}</span></li> </ul> + <h2>Instances:</h2> + <ul> + {{range .Templates.About.Instances}} + <li><u><b>{{.Title}}</b></u>: + <ul> + <li><b>Country</b>: {{.Country}}</li> + <li><b>URLs</b>: </li> + <ul> + {{range .Urls}} + {{if ne .I2P ""}} + <li><b>I2P</b>: <a href="{{.I2P}}">Yes</a></li> + {{end}} + {{if ne .Ygg ""}} + <li><b>Ygg</b>: <a href="{{.Ygg}}">Yes</a></li> + {{end}} + {{if ne .Tor ""}} + <li><b>Tor</b>: <a href="{{.Tor}}">Yes</a></li> + {{end}} + {{if ne .Clearnet ""}} + <li><b>Clearnet</b>: <a href="{{.Clearnet}}">{{.Clearnet}}</a></li> + {{end}} + {{end}} + </ul> + <li><b>Settings</b>: </li> + <ul> + <li><b>NSFW</b>: <span class="about-{{.Settings.Nsfw}}">{{if .Settings.Nsfw}}YES{{else}}NO{{end}}</span></li> + <li><b>Proxyfing</b>: <span class="about-{{.Settings.Proxy}}">{{if .Settings.Proxy}}YES{{else}}NO{{end}}</span></li> + </ul> + </ul> + </li> + {{end}} + </ul> <p>Copyright <a href="https://go.kde.org/matrix/#/@softpigeones:ebloid.ru" target="_blank">lost+skunk</a>, X11. <a href="https://git.macaw.me/skunky/skunkyart/src/tag/v1.3" target="_blank">SkunkyArt v1.3</a></p> </main> </html>
\ No newline at end of file |
