Move information about services to "services" category
continuous-integration/drone/push Build is passing Details

This commit is contained in:
BBaoVanC 2021-05-13 11:30:01 -05:00
parent 597e546cf4
commit 12cfb8b4ed
Signed by: bbaovanc
GPG Key ID: 18089E4E3CCF1D3A
8 changed files with 65 additions and 12 deletions

7
archetypes/services.md Normal file
View File

@ -0,0 +1,7 @@
+++
title = "{{ replace .Name "-" " " | title }}"
description = """
Lorem ipsum
"""
+++

View File

@ -1,10 +1,12 @@
Full list of the services hosted by boba.best:
Links to all the services (and the software they're using) hosted on boba.best:
- [Mail](https://mail.boba.best)
- [PeerTube](https://peertube.boba.best)
- [Pleroma](https://pleroma.boba.best)
- [Status Page](https://status.boba.best)
- [bobatea](https://git.boba.best) - [Gitea](https://gitea.io)
- [bobamail](https://mail.boba.best) - [Mailcow](https://mailcow.email)
- [bobatube](https://peertube.boba.best) - [PeerTube](https://joinpeertube.org)
- [pleroma.boba.best](https://pleroma.boba.best) -
[Pleroma](https://pleroma.social)
See the navigation bar on top for more information about each service.
See the [Services category]({{< relref "services/" >}}) for more information
about each service.
boba.best is owned by [bbaovanc](https://bbaovanc.com).

View File

@ -0,0 +1,8 @@
+++
title = "Services"
menu = "main"
description = """
Information about each of the services hosted on boba.best.
"""
+++

View File

@ -1,6 +1,6 @@
+++
title = "Mail"
menu = "main"
title = "bobamail"
aliases = ["/mail"]
description = """
bobamail uses Mailcow, a mail server suite which runs on open source software

View File

@ -1,6 +1,6 @@
+++
title = "PeerTube"
menu = "main"
title = "bobatube"
aliases = ["/peertube"]
description = """
PeerTube is a free and decentralized video platform meant as an alternative to

View File

@ -1,6 +1,6 @@
+++
title = "Pleroma"
menu = "main"
title = "pleroma.boba.best"
aliases = ["/pleroma"]
description = """
Pleroma is a decentralized and federated microblogging service (similar to

View File

@ -0,0 +1,16 @@
{{ define "main" }}
<content>
<h2>Services</h2>
<ul>
{{ range .Pages }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{ else }}
<li>
No posts yet
</li>
{{ end }}
</ul>
</content>
{{ end }}

View File

@ -0,0 +1,20 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ if eq .Type "blog" }}{{ if not .Params.menu }}
<p>
<i>
<time datetime='{{ .Date.Format "2006-01-02" }}' pubdate>
{{ .Date.Format (default "02 Jan, 2006" .Site.Params.dateFormat) }}
</time>
</i>
</p>
{{ end }}{{ end }}
<content>
{{ .Content }}
</content>
<p>
{{ range (.GetTerms "tags") }}
<a href="{{ .Permalink }}">#{{ .LinkTitle }}</a>
{{ end }}
</p>
{{ end }}