-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (50 loc) · 1.75 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
layout: default
title: Home
---
<section class="hero">
<h1>GitHub Repository Dashboard</h1>
<p>A curated collection of popular GitHub repositories with key metrics and insights, automatically updated monthly.</p>
</section>
<section class="data-section">
<h2>Latest Data</h2>
<div class="data-cards">
{% for item in site.data.generated_data %}
<div class="data-card">
<h3>{{ item.repository_name }}</h3>
<p>{{ item.description }}</p>
<div class="data-metrics">
<div class="data-metric">
<span class="metric-label">Stars:</span>
<span class="data-value">{{ item.stars }}</span>
</div>
<div class="data-metric">
<span class="metric-label">Forks:</span>
<span class="data-value">{{ item.forks }}</span>
</div>
<div class="data-metric">
<span class="metric-label">Issues:</span>
<span class="data-value">{{ item.open_issues }}</span>
</div>
<div class="data-metric">
<span class="metric-label">Last Updated:</span>
<span class="data-value">{{ item.last_updated | date: "%b %d, %Y" }}</span>
</div>
</div>
<a href="{{ item.repository_url }}" class="repo-link" target="_blank">View Repository</a>
</div>
{% endfor %}
</div>
</section>
<section class="blog-section">
<h2>Latest Posts</h2>
<div class="posts-list">
{% for post in site.posts %}
<div class="post-item">
<h3><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h3>
<p class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</p>
<p>{{ post.excerpt | strip_html | truncatewords: 30 }}</p>
</div>
{% endfor %}
</div>
</section>