-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexplore.html
More file actions
49 lines (48 loc) · 3.02 KB
/
explore.html
File metadata and controls
49 lines (48 loc) · 3.02 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
---
layout: inapp
title: Explore
permalink: /explore/
---
<div class="container">
<div class="col-md-12 col-sm-12 col-xs-12">
{% assign plugins = site.plugins | sort: "date" | reverse %}
{% for plugin in plugins %}
<div class="row" style="border-bottom-style: solid; border-bottom-color: #ecebeb; border-bottom-width: 1px;">
<div class="col-md-10 col-sm-10 col-xs-10">
<h5>
<strong><a href="{{ plugin.url | prepend: site.baseurl }}">{{ plugin.title }}</a></strong>
{% if plugin.lock %}<span style="font-size: 0.8em; color: #4e4e4e;"><i class="fa fa-lock"></i></span>{% endif %}
</h5>
<p>
{% if plugin.excerpt %}
{% if plugin.excerpt.size >= 225 %}
<span>{{ plugin.excerpt | slice: 0,225 }}</span><a href="{{ plugin.url | prepend: site.baseurl }}"> ...more</a>
{% else %}
<span>{{ plugin.excerpt }}</span>
{% endif %}
{% endif %}
</p>
<span>{% if plugin.author %}<i class="fa fa-user"></i> {{ plugin.author }}{% endif %}</span>
<span>{% if plugin.license_text %}<i class="fa fa-balance-scale" style="padding-left: 5px;"></i> {{ plugin.license_text }}{% endif %}</span>
<br/>
{% for tag in plugin.tags %}
<code class="highlighter-rouge"><i>{{ tag | prepend: "#" }}</i></code>
{% endfor %}
<p/>
</div>
<div class="col-md-2 col-sm-2 col-xs-2">
{% if plugin.download and plugin.license_text %}
{% if plugin.statistics_uuid %}
<div class="visible-xs"><h5><a class="actlist-plugin-download" href="{{ plugin.download | prepend: site.download_statistics_api | replace: '$uuid', plugin.statistics_uuid }}" data-required-actlist="{{ plugin.required_actlist }}"><i class="fa fa-download"></i></a></h5></div>
<div class="hidden-xs"><h5><a class="actlist-plugin-download btn btn-primary btn-sm" href="{{ plugin.download | prepend: site.download_statistics_api | replace: '$uuid', plugin.statistics_uuid }}" role="button" data-required-actlist="{{ plugin.required_actlist }}"><i class="fa fa-download"></i> Download</a></h5></div>
{% else %}
<div class="visible-xs"><h5><a class="actlist-plugin-download" href="{{ plugin.download | prepend: site.download_api }}" data-required-actlist="{{ plugin.required_actlist }}"><i class="fa fa-download"></i></a></h5></div>
<div class="hidden-xs"><h5><a class="actlist-plugin-download btn btn-primary btn-sm" href="{{ plugin.download | prepend: site.download_api }}" role="button" data-required-actlist="{{ plugin.required_actlist }}"><i class="fa fa-download"></i> Download</a></h5></div>
{% endif %}
{% endif %}
</div>
</div>
<p/>
{% endfor %}
</div>
</div>