forked from cofounders/legal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 1.63 KB
/
index.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
---
layout: menu
title: Legal Boilerplate
---
<section id="list">
<article>
<header>
<h1>Legal Boilerplate</h1>
</header>
<p>These templates are free and open source. Visit the <a href="{{ site.owner.github }}/legal">Cofounders GitHub repository</a> to edit, discuss, and contribute.</p>
<p><b>Cofounders Pte Ltd is not a law firm, and the contributors to this service are not acting as your attorney.</b>
The template authors and Cofounders Pte Ltd are not responsible for the consequences of use.
You should read and understand the templates and determine the suitability for their particular situation.
If in doubt, you should consult professional advisors.
</p>
<hr />
<ol>
{% for post in site.posts %}
<li class="template">
<article>
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<p class="date">
Published:
<a href="{{ site.owner.github }}/legal/commits/gh-pages/{{ post.path }}">
<time datetime="{{ post.date | date_to_xmlschema }}">
{{ post.date | date_to_long_string }}
</time>
</a>
</p>
<ul class="tags">
{% for tag in post.tags %}
<li class="{{ tag | downcase }}"><span>{{ tag | capitalize }}</span></li>
{% endfor %}
</ul>
<ul class="authors">
{% for author in post.authors %}
<li><a href="{{ author.contact }}">{{ author.name }}</a></li>
{% endfor %}
</ul>
</article>
</li>
{% endfor %}
</ol>
<hr />
</article>
</section>