pidgin/nest

36584b992997
Add new chat options to the Community page

Add the general@conference.pidgin.im XMPP MUC and the new LiberaChat IRC channel to the community page. Also fix a spacing thing that makes Sublime Text highlight in red.

Testing Done:
Ran development server and verified page appeared as expected.

Reviewed at https://reviews.imfreedom.org/r/664/
<section class="supporters">
<b>{{ T "Our-Supporters" }}</b>
<div>
{{ range .Site.Data.supporters }}
{{ $url := urls.Parse .badge }}
{{ $style := "" }}
{{ if .style }}
{{ $style = printf "style=\"%s\"" .style }}
{{ end }}
{{ if $url.Scheme }}{{/* Absolute path */}}
<a href="{{ .url | safeHTMLAttr }}">
<img src="{{ .badge }}" alt="{{ .name | safeHTMLAttr }}" {{ $style | safeHTMLAttr }}/>
</a>
{{ else }}
<a href="{{ .url | safeHTMLAttr }}">
<img src="/images/badges/{{ .badge }}" alt="{{ .name | safeHTMLAttr }}" {{ $style | safeHTMLAttr }}/>
</a>
{{ end }}
{{ end }}
</div>
</section>