Started to add real content

This commit is contained in:
Thomas Boerger 2016-12-01 17:38:46 +01:00 committed by Kim "BKC" Carlbäcker
parent 4d1a5f6d08
commit 9af246d382
3 changed files with 31 additions and 13 deletions

View file

@ -5,7 +5,20 @@ theme = "gitea"
disableRSS = false disableRSS = false
disableSitemap = false disableSitemap = false
defaultContentLanguage = "en"
[permalinks]
post = "/:year/:month/:title/"
page = "/:slug/"
[params] [params]
Description = "Git with a cup of tea" Description = "Git with a cup of tea"
Author = "The Gitea Authors" Author = "The Gitea Authors"
Website = "https://gitea.io" Website = "https://gitea.io"
Toplink = "website"
# [languages]
# [languages.en]
# weight = 0
# [languages.de]
# weight = 1

View file

@ -1,21 +1,14 @@
--- ---
date: "2016-11-08T16:00:00+02:00" date: "2016-11-08T16:00:00+02:00"
draft: false title: "Welcome"
title: "Website"
weight: 10 weight: 10
type: "index" toc: false
draft: false
type: "default"
--- ---
# Gitea - Git with a cup of tea # Gitea - Git with a cup of tea
Gitea is a community managed fork of [Gogs](http://gogs.io), Gitea is a community managed fork of [Gogs](http://gogs.io), lightweight code hosting solution written in [Go](https://golang.org/) and published under the [MIT](https://github.com/gogits/gogs/blob/master/LICENSE) license. The code of Gitea is currently hosted on [GitHub](https://github.com/go-gitea/).
lightweight code hosting solution written in [Go](https://golang.org/)
and published under the [MIT](https://github.com/gogits/gogs/blob/master/LICENSE)
license.
Code of Gitea is currently hosted on At the time of writing, there are no official Gitea release yet, but we're working hard to get to 1.0.0 in a way that would allow seamless upgrades of existing Gogs deploys.
[GitHub](https://github.com/go-gitea/).
At the time of writing, there are no official Gitea release yet, but
we're working hard to get to 1.0.0 in a way that would allow
seamless upgrades of existing Gogs deploys.

12
layouts/index.html Normal file
View file

@ -0,0 +1,12 @@
{{ partial "header.html" . }}
{{ partial "navbar.html" . }}
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
{{ .Content }}
</div>
</div>
</div>
{{ partial "footer.html" . }}