-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ♻️ (src/templates/home): fix code indentation & missing div Improved code indentation and added a missing closing div. * 💄 (src/templates/home): add docs tab * 💄 (src/templates/docs): add docs page Added docs page with a Bootstrap Card named "Documentation". Here there will be all link for the User Documentation docs. In future could be added more Cards. * ✨ (src/routes): add docs route
- Loading branch information
Showing
3 changed files
with
58 additions
and
16 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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{% extends 'home.html' %} | ||
|
||
{% block script %} | ||
{% endblock%} | ||
|
||
{% block disclaimer %} | ||
{% endblock%} | ||
|
||
{% block body %} | ||
<!-- Description and Login --> | ||
<div class="row mx-auto py-md-2"> | ||
<div class="card" style="width: 18rem;"> | ||
<!-- <img src="..." class="card-img-top" alt="..."> --> | ||
<div class="card-body"> | ||
<h2 class="card-title">Documentation</h2> | ||
<p class="card-text">Here you can find all the user documentation about the UniNuvola project.</p> | ||
|
||
<ul class="list-group list-group-flush"> | ||
<li class="list-group-item"> | ||
<a class="btn btn-link" href="https://github.com/UniNuvola/quickstart/releases/latest/download/main.pdf" about="_blank"> | ||
<i class="bi bi-file-pdf" style="color:red"></i> Quickstart guide | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
{% endblock%} |
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