-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
32 lines (29 loc) · 1.01 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
---
title: Home
layout: home
order: null
summary: Community for F# Home Page
---
<article class="row">
{% assign mypages = site.pages | sort: "order" %}
{% for page in mypages %}
{% if page.order != null %}
<section class="col-sm-6 card text-center card-body">
<h1 class="card-title">{{ page.title }}</h1>
<p class="card-body">{{ page.summary }}</p>
<a href="{{ page.url | relative_url }}" title="{{ page.title }}" class="btn btn-amber">Go</a>
</section>
{% endif %}
{% endfor %}
</article>
<article>
<header>
<h1>Project Governance</h1>
</header>
<p>Community for F# welcomes contributions! These are our current guidelines for accepting contributions:</p>
<ul>
<li>Use either MIT or Apache 2 license</li>
<li>You are free to add your name as the copyright holder, but we will accept pull requests from other contributors</li>
<li>The owners reserve the right to curate and remove older, out-of-date content</li>
</ul>
</article>