forked from OBOFoundry/OBOFoundry.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
principle.html
72 lines (59 loc) · 1.83 KB
/
principle.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
layout: default
---
{% include navbar.html %}
<div class="content">
<div>
<div class="page-header">
<h1>
{% if page.title == "Overview" %}
Principles: {{ page.title }}
{% else %}
Principle: {{ page.title }}
{% endif %}
</h1>
<p>
{{page.summary}}
</p>
</div>
</div>
<div class="col-md-12">
<div class="row">
<div class="col-md-3">
<ul>
{% for p in site.principles %}
<li>
<a href="{{p.id}}.html">{{p.title}}</a>
</li>
{% endfor %}
</ul>
<div class="btn-group" role="group" aria-label="Source">
<a href="https://github.com/OBOFoundry/OBOFoundry.github.io/blob/master/principles/{{page.id}}.md">
<button type="button"
data-toggle="tooltip"
title="See FAQ entry: How I do propose edits to principles?"
html="true"
class="btn btn-default">
View
</button>
</a>
<a href="https://github.com/OBOFoundry/OBOFoundry.github.io/edit/master/principles/{{page.id}}.md">
<button type="button"
data-toggle="tooltip"
title="See FAQ entry: How I do propose edits to principles?"
html="true"
class="btn btn-default">
Edit</button>
</a>
<!-- <button type="button" class="btn btn-default">Help</button> -->
</div>
<div>
This page is generated via <a href="{{site.repo_src}}_layouts/principle.html">_layouts/principle.html</a>. See <a href="/faq/how-do-i-edit-content.html">edit guide</a>
</div>
</div>
<div class="col-md-9">
{{ content }}
</div>
</div>
</div>
</div>