This repository was archived by the owner on May 8, 2021. It is now read-only.
forked from uxchecklist/uxchecklist.github.io
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (33 loc) · 1.34 KB
/
index.html
File metadata and controls
38 lines (33 loc) · 1.34 KB
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
---
layout: default
---
<p class="intro-text">
Open source projects are about so much more than just code. They're about building and maintaining a community of users and contributors. Here's a basic checklist of how.
</p>
<form id="checklist-form" method="POST">
<div class="row clearfix">
{% for post in site.posts %}
<div class="cards {{ post.category_slug }}">
<input id="checkbox{{forloop.index}}" type="checkbox">
<!-- <div class="img">
<img class="left" src="img/icons128/Deep-Crawl.png">
</div> -->
<div class="card-content left">
<label for="checkbox{{forloop.index}}">{{ post.title }}
<div><small>{{ post.category }}</small></div>
<p>{{ post.content }}</p>
</label>
{% if post.read_more %}
<a class="more hide-for-print" href="{{ post.read_more }}" target="_blank" title="{{ post.read_more_title }}">Read more</a>
{% endif %}
{% if post.example %}
<a class="more hide-for-print" href="{{ post.example }}" target="_blank" title="{{ post.example_title }}">Example at {{ post.example_title }}</a>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</form>
<p class="intro-text">
Have thoughts, ideas, feedback, examples, read more material? Check out <a href="https://github.com/opensourcedesign/foss-contributors-checklist/" title="Checklist Repository on GitHub">the repository</a>.
</p>