-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from nkdAgility/update/20230517
Add scrum guide attachments and fix downloads
- Loading branch information
Showing
12 changed files
with
45 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,24 @@ | ||
{% assign downloads = page.downloads %} | ||
{% if downloads.size > 0 %} | ||
<div class="card m-2"> | ||
<h5 class="no_toc card-header">Downloads</h5> | ||
<div class="card-body"> | ||
<div class="btn-group" role="group" aria-label="Basic example"> | ||
{% for item in downloads %} | ||
<a class="btn btn-primary" target="_blank" href="{{item.url}}" role="button" title="{{item.title}}">{{item.name}}</a> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
<div class="card m-2"> | ||
<h5 class="no_toc card-header">Downloads</h5> | ||
<div class="card-body"> | ||
<ul id="toc" class="section-nav bd-links-nav list-unstyled pb-1 small"> | ||
{% for item in downloads %} | ||
<li class="toc-entry align-items-center pb-2 ps-2 toc-h2"> | ||
<i class="fa-regular fa-download"></i> | ||
{% if item.url contains "://" %} | ||
<a href="{{ item.url }}" target="_blank"> | ||
{% else %} | ||
<a href="{{ site.baseurl }}{{ item.url }}" target="_blank"> | ||
{% endif %} | ||
{{item.title}} | ||
</a> ({{ item.type }}) | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</div> | ||
{% endif %} | ||
|
||
|
||
|
||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters