2014-02-17 23:38:50 +00:00
|
|
|
{{template "base/head" .}}
|
|
|
|
{{template "base/navbar" .}}
|
2014-03-25 10:44:37 +00:00
|
|
|
<div id="body" class="container">
|
2014-04-14 08:11:33 +00:00
|
|
|
{{if not .Repos}}
|
2014-03-28 12:39:35 +00:00
|
|
|
<h4>Hey there, welcome to the land of Gogs!</h4>
|
2014-04-20 06:54:26 +00:00
|
|
|
<p>If you just got your Gogs server running, go to the <a href="/install">install</a> guide page, which will guide you through your initial setup.</p>
|
2014-03-28 12:39:35 +00:00
|
|
|
<img src="http://gowalker.org/public/gogs_demo.gif">
|
2014-04-14 08:11:33 +00:00
|
|
|
{{else}}
|
|
|
|
<h4>Hey there, welcome to the land of Gogs!</h4>
|
|
|
|
<h5>Here are some recent updated repositories:</h5>
|
|
|
|
<div class="tab-pane active">
|
|
|
|
<ul class="list-unstyled repo-list">
|
2014-05-05 17:08:01 +00:00
|
|
|
{{range .Repos}}
|
2014-04-14 08:11:33 +00:00
|
|
|
<li>
|
|
|
|
<div class="meta pull-right"><!-- <i class="fa fa-star"></i> {{.NumStars}} --> <i class="fa fa-code-fork"></i> {{.NumForks}}</div>
|
|
|
|
<h4>
|
|
|
|
<a href="/{{.Owner.Name}}/{{.Name}}">{{.Name}}</a>
|
|
|
|
</h4>
|
|
|
|
<p class="desc">{{.Description}}</p>
|
|
|
|
<div class="info">Last updated {{.Updated|TimeSince}}</div>
|
|
|
|
</li>
|
2014-05-05 17:08:01 +00:00
|
|
|
{{end}}
|
2014-04-14 08:11:33 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2014-02-17 23:38:50 +00:00
|
|
|
</div>
|
2014-03-25 19:54:46 +00:00
|
|
|
{{template "base/footer" .}}
|