-
Notifications
You must be signed in to change notification settings - Fork 206
/
Copy pathcheck.html
64 lines (62 loc) · 1.79 KB
/
check.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
---
layout: default
---
<div class="content">
<div>
<div class="page-header">
<h1>{{ page.title }}</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>
{% if page.id %}
<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-outline-primary"
>
View
</button>
</a>
<a
href="https://github.com/OBOFoundry/OBOFoundry.github.io/edit/master/principles/checks/{{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-outline-primary"
>
Edit
</button>
</a>
<!-- <button type="button" class="btn btn-outline-primary">Help</button> -->
</div>
{% endif %}
<div>
This page is generated via
<a href="{{site.repo_src}}_layouts/principle.html"
>_layouts/check.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>