Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gh-pages-template/assets/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class UIManager {
<div class="col-lg-4 col-md-6 mb-4" data-repo="${repo.name.toLowerCase()}">
<div class="card h-100 shadow border-0 rounded-0">
<div class="card-body text-white p-4 rounded-0">
<h5 class="card-title text-primary mb-3">${repo.name}</h5>
<h5 class="card-title text-info mb-3">${repo.name}</h5>
<ul class="list-group list-group-flush">
${repo.releases ? repo.releases.map(release => `
<li class="list-group-item d-flex justify-content-between align-items-center px-0">
Expand Down
6 changes: 3 additions & 3 deletions gh-pages-template/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,23 +24,23 @@
<div class="col-auto">
<div class="card h-100 shadow border-0 rounded-0">
<div class="card-body text-white p-4 rounded-0 text-center">
<h5 class="card-title text-primary" id="repoCount">-</h5>
<h5 class="card-title text-info" id="repoCount">-</h5>
<p class="card-text">Repositories</p>
</div>
</div>
</div>
<div class="col-auto">
<div class="card h-100 shadow border-0 rounded-0">
<div class="card-body text-white p-4 rounded-0 text-center">
<h5 class="card-title text-primary" id="releaseCount">-</h5>
<h5 class="card-title text-info" id="releaseCount">-</h5>
<p class="card-text">Releases</p>
</div>
</div>
</div>
<div class="col-auto">
<div class="card h-100 shadow border-0 rounded-0">
<div class="card-body text-white p-4 rounded-0 text-center">
<h5 class="card-title text-primary" id="assetCount">-</h5>
<h5 class="card-title text-info" id="assetCount">-</h5>
<p class="card-text">Assets</p>
</div>
</div>
Expand Down