diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/_repo_header.html.tmpl | 10 | ||||
-rw-r--r-- | templates/repo_commit.html.tmpl | 3 | ||||
-rw-r--r-- | templates/repo_index.html.tmpl | 3 | ||||
-rw-r--r-- | templates/repo_log.html.tmpl | 3 | ||||
-rw-r--r-- | templates/repo_raw_dir.html.tmpl | 3 | ||||
-rw-r--r-- | templates/repo_tree_dir.html.tmpl | 3 | ||||
-rw-r--r-- | templates/repo_tree_file.html.tmpl | 3 |
7 files changed, 0 insertions, 28 deletions
diff --git a/templates/_repo_header.html.tmpl b/templates/_repo_header.html.tmpl deleted file mode 100644 index 8a7fd4b..0000000 --- a/templates/_repo_header.html.tmpl +++ /dev/null @@ -1,10 +0,0 @@ -{{- define "repo_header" -}} -/ -<a href="/{{ .group_name }}/">{{ .group_name }}</a> -/ -<a href="/{{ .group_name }}/:">:</a> -/ -<a href="/{{ .group_name }}/:/repos/">repos</a> -/ -<a href="/{{ .group_name }}/:/repos/{{ .repo_name }}/">{{ .repo_name }}</a> -{{- end -}} diff --git a/templates/repo_commit.html.tmpl b/templates/repo_commit.html.tmpl index 4965d6e..bd87f87 100644 --- a/templates/repo_commit.html.tmpl +++ b/templates/repo_commit.html.tmpl @@ -7,9 +7,6 @@ </head> <body class="repo-commit"> {{ template "header" . }} - <header> - {{ template "repo_header" . }} - </header> <div class="padding-wrapper scroll"> <table id="commit-info-table"> <thead> diff --git a/templates/repo_index.html.tmpl b/templates/repo_index.html.tmpl index d799a22..4b20c27 100644 --- a/templates/repo_index.html.tmpl +++ b/templates/repo_index.html.tmpl @@ -7,9 +7,6 @@ </head> <body class="repo-index"> {{ template "header" . }} - <header> - {{ template "repo_header" . }} - </header> <div class="padding-wrapper"> <table id="repo-info-table"> <thead> diff --git a/templates/repo_log.html.tmpl b/templates/repo_log.html.tmpl index 34b7c45..e25f2bd 100644 --- a/templates/repo_log.html.tmpl +++ b/templates/repo_log.html.tmpl @@ -7,9 +7,6 @@ </head> <body class="repo-log"> {{ template "header" . }} - <header> - {{ template "repo_header" . }} - </header> <table id="commits" class="wide"> <thead> <tr class="title-row"> diff --git a/templates/repo_raw_dir.html.tmpl b/templates/repo_raw_dir.html.tmpl index dc7bb98..6b1da0d 100644 --- a/templates/repo_raw_dir.html.tmpl +++ b/templates/repo_raw_dir.html.tmpl @@ -7,9 +7,6 @@ </head> <body class="repo-raw-dir"> {{ template "header" . }} - <header> - {{ template "repo_header" . }} - </header> <div class="padding-wrapper scroll"> <table id="file-tree" class="wide"> <thead> diff --git a/templates/repo_tree_dir.html.tmpl b/templates/repo_tree_dir.html.tmpl index 73ea4cf..4386637 100644 --- a/templates/repo_tree_dir.html.tmpl +++ b/templates/repo_tree_dir.html.tmpl @@ -7,9 +7,6 @@ </head> <body class="repo-tree-dir"> {{ template "header" . }} - <header> - {{ template "repo_header" . }} - </header> <div class="padding-wrapper scroll"> <table id="file-tree" class="wide"> <thead> diff --git a/templates/repo_tree_file.html.tmpl b/templates/repo_tree_file.html.tmpl index 9f705c9..be78efd 100644 --- a/templates/repo_tree_file.html.tmpl +++ b/templates/repo_tree_file.html.tmpl @@ -8,9 +8,6 @@ </head> <body class="repo-tree-file"> {{ template "header" . }} - <header> - {{ template "repo_header" . }} - </header> <p> /{{ .path_spec }} (<a href="/{{ .group_name }}/:/repos/{{ .repo_name }}/raw/{{ .path_spec }}{{ if not (eq .ref_type "head") }}?{{ .ref_type }}={{ .ref }}{{ end }}">raw</a>) </p> |