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
disableSitemap = false
defaultContentLanguage = "en"
[permalinks]
post = "/:year/:month/:title/"
page = "/:slug/"
[params]
Description = "Git with a cup of tea"
Author = "The Gitea Authors"
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"
draft: false
title: "Website"
title: "Welcome"
weight: 10
type: "index"
toc: false
draft: false
type: "default"
---
# Gitea - Git with a cup of tea
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.
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/).
Code of Gitea is currently hosted on
[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.
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" . }}