This repository was archived by the owner on Feb 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreleases.html
More file actions
executable file
·82 lines (66 loc) · 2.87 KB
/
releases.html
File metadata and controls
executable file
·82 lines (66 loc) · 2.87 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
73
74
75
76
77
78
79
80
81
82
---
layout:
title: Releases
order: 30
---
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
{% include navbar.html %}
<!-- *****************************************************************************************************************
BLUE WRAP
***************************************************************************************************************** -->
<div id="blue">
<div class="container">
<div class="row">
<h3>{{ page.title }}</h3>
</div><!-- /row -->
</div> <!-- /container -->
</div><!-- /blue -->
<!-- *****************************************************************************************************************
BLOG CONTENT
***************************************************************************************************************** -->
<div class="container mtb">
<div class="row">
{%if site.github.public_repositories != null %}
<div class="col-lg-12">
{%assign reposByStars = site.github.public_repositories | sort:"stargazers_count" %}
{%for repo in reposByStars reversed %}
{%unless repo.full_name == "tracee/tracee.github.io" %}
<a href="{{ repo.html_url }}"><h3 class="ctitle">{{ repo.full_name }}</h3></a>
<p>{{ repo.description }}</p>
<!-- Releases: {{ repo.releases }} -->
<p><a href="{{ repo.html_url }}/releases" class="btn btn-theme">releases of project</a></p>
<div class="hline"></div>
<div class="spacing"></div>
{%endunless%}
{%endfor%}
<!--
{% for post in site.posts limit: 5 %}
{% if post.image != empty %}<p><img class="img-responsive" src="{{ post.image }}"></p>{% endif %}
<a href="{{ post.url }}"><h3 class="ctitle">{{ post.title }}</h3></a>
<p><csmall>Posted: {{ post.date | date_to_string }}.</csmall> | <csmall2>By: {{ post.author }}</csmall2></p>
{{ post.excerpt }}
<p><a href="{{ post.url }}">[Read More]</a></p>
<div class="hline"></div>
<div class="spacing"></div>
{% endfor %}-->
</div><! --/col-lg-12 -->
{%endif%}
</div><! --/row -->
</div><! --/container -->
{% include footer.html %}
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="/assets/js/bootstrap.min.js"></script>
<script src="/assets/js/retina-1.1.0.js"></script>
<script src="/assets/js/jquery.hoverdir.js"></script>
<script src="/assets/js/jquery.hoverex.min.js"></script>
<script src="/assets/js/jquery.prettyPhoto.js"></script>
<script src="/assets/js/jquery.isotope.min.js"></script>
<script src="/assets/js/custom.js"></script>
</body>
</html>