-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e97946
commit 49eb8e6
Showing
2 changed files
with
58 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{{template "base/head" .}} | ||
<div class="repository commits"> | ||
{{template "repo/header" .}} | ||
<div class="ui container"> | ||
|
||
|
||
<div id="git-graph-container"> | ||
<div id="rel-container"> | ||
<canvas id="graph-canvas"> | ||
<ul id="graph-raw-list"> | ||
{{ range .Graph }} | ||
<li><span class="node-relation">{{ .GraphAcii -}}</span></li> | ||
{{ end }} | ||
</ul> | ||
</canvas> | ||
</div> | ||
<div id="rev-container"> | ||
<ul id="rev-list"> | ||
{{ range .Graph }} | ||
<li> | ||
{{ if .OnlyRelation }} | ||
<span /> | ||
{{ else }} | ||
<code id="{{.ShortRev}}"> | ||
<a href="{{AppSubUrl}}/{{$.Username}}/{{$.Reponame}}/commit/{{.Rev}}">{{ .ShortRev}}</a> | ||
</code> | ||
<strong> {{.Branch}}</strong> | ||
<em>{{.Subject}}</em> by | ||
<span class="author"> | ||
{{.Author}} | ||
</span> | ||
<span class="time">{{.Date}}</span> | ||
{{ end }} | ||
</li> | ||
{{ end }} | ||
</ul> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
</div> | ||
</div> | ||
{{template "base/footer" .}} |