-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (71 loc) · 2.58 KB
/
Copy pathindex.html
File metadata and controls
73 lines (71 loc) · 2.58 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
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: index
---
<div id="index" class="container">
<header class="page-header">
<h1>Reports</h1>
</header>
<div class="header">
<hr style="margin-bottom: 6px;" />
<div class="row">
<div class="col-md-9">
<div class="row">
<div class="pull-left col-md-6">
<form id="search-form" class="">
<span class="form-wrap">
<input type="text" name="q" id="tipue_search_input" autocomplete="off" required>
</span>
</form>
</div>
<div id="layout-toggle" class="pull-right hidden-xs hidden-sm ">
<a class="grid-view on" href="javascript:void(0);" title="Grid View" data-layout="grid"> <i
class="fa fa-th-large"></i> </a> <a class="feed-view" href="javascript:void(0);"
title="Feed View" data-layout="feed"> <i
class="fa fa-list"></i> </a>
</div>
</div>
</div>
</div>
</div>
<hr style="margin: 6px 0 0 0;"/>
<div class="content col-md-9 first">
<div id="tipue_search_content"></div>
<div class="clearfix row" id="report-list">
{% assign indx = 0 %}
{% for report in site.reports reversed %}
{% if report.state and report.state == 'published' %}
<div class="col-md-4 report">
<a href="{{ report.url }}" class="report-image border-orange">
<img height="394" width="544"
src="{{ site.baseurl }}/img/content/thumbnails/{{ report.thumbnail }}"
alt="Permanent Link to {{ report.title }}" />
<span class="date">{{ report.date|date: "%B %Y" }}</span>
</a>
<div class="report-caption">
<a href="{{ report.url }}" class="title">{{ report.title }}</a>
<div class="report-meta hidden">
By <strong>{{ report.author }}</strong> <br />
</div>
<div class="short">
<p>{{ report.description|truncatewords:40 }}</p>
</div>
<div class="long hidden">
<p>
{{ report.description }}
</p>
</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
</div>
<div class="sidebar col-md-3">
<div id="contribute" class="widget">
<p>These reports are our way of sharing our experiments, collaborations and best practice with our community and the world. We plan to keep documenting our activities in these reports, as a way of showcasing the work we do and with our partners.
<br />If you have any questions, comments, feedback or just a hello, please give a shout to our
community list.</p>
<a href="http://community.p2pu.org" class="btn btn-info">Show me</a>
</div>
</div>
</div>