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 .github/workflows/update-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ jobs:
uses: LizardByte/LizardByte.github.io/.github/workflows/jekyll-build.yml@master
secrets:
GH_BOT_EMAIL: ${{ secrets.GH_BOT_EMAIL }}
GH_BOT_NAME: ${{ vars.GH_BOT_NAME }}
GH_BOT_TOKEN: ${{ secrets.GH_BOT_TOKEN }}
with:
clean_gh_pages: true
gh_bot_name: ${{ vars.GH_BOT_NAME }}
site_artifact: 'prep'
target_branch: 'gh-pages'
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 @@ -162,7 +162,7 @@ class UIManager {
return `
<div class="col-lg-4 col-md-6 mb-4" data-repo="${repo.name.toLowerCase()}" ${repo.archived ? 'data-archived="true"' : ''}>
<div class="card h-100 shadow border-0 rounded-0">
<div class="card-body text-white p-4 rounded-0">
<div class="card-body p-4 rounded-0">
<h5 class="card-title text-info mb-3">
${repo.name}
${repo.archived ? '<span class="badge bg-warning text-dark ms-2">Archived</span>' : ''}
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 @@ -34,23 +34,23 @@
<div class="row justify-content-center mb-4">
<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">
<div class="card-body p-4 rounded-0 text-center">
<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">
<div class="card-body p-4 rounded-0 text-center">
<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">
<div class="card-body p-4 rounded-0 text-center">
<h5 class="card-title text-info" id="assetCount">-</h5>
<p class="card-text">Assets</p>
</div>
Expand Down