add badges
17
config.toml
@ -1,4 +1,19 @@
|
||||
baseURL = 'https://bokku.xyz/'
|
||||
languageCode = 'en-us'
|
||||
title = 'Bokku'
|
||||
theme = 'zmin'
|
||||
theme = 'zmin'
|
||||
|
||||
[[menus.main]]
|
||||
name = "Home"
|
||||
pageRef = "/"
|
||||
weight = 10
|
||||
|
||||
[[menus.main]]
|
||||
name = "Legal"
|
||||
pageRef = "/legal"
|
||||
weight = 20
|
||||
|
||||
[[menus.main]]
|
||||
name = "Abuse"
|
||||
url = "mailto:admin@bokku.xyz"
|
||||
weight = 30
|
14
content/_index.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
Title: "Home"
|
||||
---
|
||||
**Bokku** is a free web host tailored towards people who want a website but don't have the monetary resources to do so.
|
||||
|
||||
### Shared hosting
|
||||
* 300MB HDD storage
|
||||
* PHP support
|
||||
* 1 MySQL database
|
||||
* Unlimited bandwidth
|
||||
|
||||
Interested? Contact [admin@bokku.xyz](mailto:admin@bokku.xyz).
|
||||
|
||||
[![](/badges/bokku.gif)](https://bokku.xyz) [![](/badges/fzorb.gif)](https://fzorb.xyz) [![](/badges/zorbmail.gif)](https://mail.fzorb.xyz) [![](/badges/frantech.gif)](https://frantech.ca) [![](/badges/freebsd.gif)](https://freebsd.org) ![](/badges/nojs.gif) [![](/badges/zx86.gif)](https://zx86.org) [![](/badges/vim2.gif)](https://www.vim.org) [![](/badges/gitea.gif)](https://git.fzorb.xyz/bokku/website) [![](/badges/firefox3.gif)](https://mozilla.org) [![](/badges/monero-now.gif)](https://getmonero.org) [![](/badges/mysqla.gif)]() ![](/badges/lilrib.gif) [![](/badges/best_free.gif)](https://fsf.org)
|
3
content/legal/_index.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
Title: "Legal"
|
||||
---
|
10
content/legal/pp.md
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
Title: "Privacy Policy"
|
||||
---
|
||||
|
||||
## Information Bokku collects:
|
||||
* Everything you upload on your website
|
||||
* Your IP address when accessing any *.bokku.xyz site, either via HTTP or FTP
|
||||
|
||||
## How that information is used
|
||||
* Bokku does not sell your data at all ever to anyone ever
|
19
content/legal/tos.md
Normal file
@ -0,0 +1,19 @@
|
||||
---
|
||||
Title: "Terms of Service"
|
||||
---
|
||||
|
||||
## Best-Effort Service
|
||||
Bokku.xyz is a free service, and we strive to ensure its reliability. However, there may be occasional instances where Bokku goes offline. In such cases, we cannot be held responsible for any disruptions or inconveniences. We are also not obligated to provide you with service.
|
||||
|
||||
## Termination of Service
|
||||
Bokku.xyz reserves the right to terminate your service at our own discression. It can mostly be boiled down to:
|
||||
* Breaking our Acceptable Usage Policy
|
||||
* Nothing that would be unlawful in Luxembourg or Romania
|
||||
* No commercial services, go to a more reputable web host
|
||||
* No pornographic material
|
||||
* Reselling our hosting
|
||||
* Preventing other users from properly utilising their Bokku.xyz web hosting.
|
||||
* Exceeding the maximum storage limit
|
||||
|
||||
## Additional Points
|
||||
You are the sole person responsible for checking for any updates to our terms of service.
|
BIN
static/badges/best_free.gif
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
static/badges/bokku.gif
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
static/badges/firefox3.gif
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
static/badges/frantech.gif
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
static/badges/freebsd.gif
Normal file
After Width: | Height: | Size: 999 B |
BIN
static/badges/fzorb.gif
Normal file
After Width: | Height: | Size: 498 B |
BIN
static/badges/gitea.gif
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
static/badges/lilrib.gif
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
static/badges/monero-now.gif
Normal file
After Width: | Height: | Size: 921 B |
BIN
static/badges/mysqla.gif
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
static/badges/nojs.gif
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
static/badges/vim2.gif
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
static/badges/zorbmail.gif
Normal file
After Width: | Height: | Size: 425 B |
BIN
static/badges/zorbnet.gif
Normal file
After Width: | Height: | Size: 246 B |
BIN
static/badges/zx86.gif
Normal file
After Width: | Height: | Size: 869 B |
@ -11,7 +11,6 @@
|
||||
{{ if .IsHome }}{{ $pages = .Site.RegularPages }}{{ end }}
|
||||
{{ range (where $pages "Section" "!=" "") }}
|
||||
<li>
|
||||
<span class="date">{{ .Date.Format "2006/01/02" }}</span>
|
||||
<a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|