-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (53 loc) · 1.83 KB
/
index.html
File metadata and controls
57 lines (53 loc) · 1.83 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
---
layout: default
title: Home
---
<section class="hero">
<h1>MatMul AI GitHub Projects</h1>
<p>A curated collection of AI repositories with key metrics and insights, automatically updated monthly.</p>
</section>
<section class="data-section">
<h2>Latest Repositories</h2>
<div class="data-cards">
{% for item in site.data.generated_data %}
<div class="data-card">
<h3>{{ item.Name }}</h3>
<p class="repo-description">{{ item.Description }}</p>
{% if item.Summary != "" %}
<p class="repo-summary">{{ item.Summary }}</p>
{% endif %}
<div class="data-metrics">
<div class="data-metric">
<span class="metric-label">Language:</span>
<span class="data-value">{{ item.Language }}</span>
</div>
<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.OpenIssues }}</span>
</div>
</div>
<a href="{{ item.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>