Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
osp
tools.gitlabculture
Commits
03cbac58
Commit
03cbac58
authored
Mar 06, 2020
by
sarah
Browse files
strure flex
parent
a6a9a544
Changes
1
Hide whitespace changes
Inline
Side-by-side
generator/templates/project.html
View file @
03cbac58
...
...
@@ -14,30 +14,36 @@
<li><a
href=
"#"
id=
"filter-tree"
>
Diagram
</a></li>
</ul>
</header>
{% if project.readme %}
<section
id=
"readme"
>
{{ project.readme }}
</section>
{% endif %}
<h3>
Tree
</h3>
<ul>
{% for file in project.tree %}
<li>
{{ file.name }}
</li>
{% endfor %}
</ul>
<section
id=
"repo-content"
>
<h3>
Commits
</h3>
<ul
class=
"commit-list"
>
{% for commit in project.commits %}
<li
class=
"commit-item"
>
<a
href=
"https://gitlab.constantvzw.org/osp/{{ project.name }}/-/commit/{{ commit.id }}"
>
<time
class=
"commit-time"
>
{{ commit.committed_date }}
</time>
</a>
<p
class=
"commit-message"
>
{{ commit.message }}
</p>
<p
class=
"commit-author"
>
{{ commit.author_name }}
</p>
</li>
{% endfor %}
</ul>
{% if project.readme %}
<section
id=
"readme"
>
{{ project.readme }}
</section>
{% endif %}
<section
id=
"tree"
>
<h3>
Tree
</h3>
<ul>
{% for file in project.tree %}
<li>
{{ file.name }}
</li>
{% endfor %}
</ul>
</section>
<section
id=
"commits"
>
<h3>
Commits
</h3>
<ul
class=
"commit-list"
>
{% for commit in project.commits %}
<li
class=
"commit-item"
>
<a
href=
"https://gitlab.constantvzw.org/osp/{{ project.name }}/-/commit/{{ commit.id }}"
>
<time
class=
"commit-time"
>
{{ commit.committed_date }}
</time>
</a>
<p
class=
"commit-message"
>
{{ commit.message }}
</p>
<p
class=
"commit-author"
>
{{ commit.author_name }}
</p>
</li>
{% endfor %}
</ul>
</section>
</section>
</div>
{% endblock %}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment