2014-02-18 08:38:50 +09:00
|
|
|
{{template "base/head" .}}
|
|
|
|
{{template "base/navbar" .}}
|
2014-03-25 19:44:37 +09:00
|
|
|
<div id="body" class="container">
|
2014-04-14 17:11:33 +09:00
|
|
|
{{if not .Repos}}
|
2014-03-28 21:39:35 +09:00
|
|
|
<h4>Hey there, welcome to the land of Gogs!</h4>
|
2014-04-20 15:54:26 +09: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 21:39:35 +09:00
|
|
|
<img src="http://gowalker.org/public/gogs_demo.gif">
|
2014-04-14 17:11:33 +09: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-06 02:08:01 +09:00
|
|
|
{{range .Repos}}
|
2014-04-14 17:11:33 +09: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-06 02:08:01 +09:00
|
|
|
{{end}}
|
2014-04-14 17:11:33 +09:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2014-02-18 08:38:50 +09:00
|
|
|
</div>
|
2014-03-26 04:54:46 +09:00
|
|
|
{{template "base/footer" .}}
|