-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: STADTKLN-69 implement apps page (#18)
- Loading branch information
1 parent
62e6d87
commit 588bd59
Showing
7 changed files
with
127 additions
and
153 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,15 @@ | ||
<a href='{{ href }}' class='link fs-5'> | ||
{% if icon %} | ||
<i class='bi bi-{{ icon }} text-primary me-2' aria-hidden='true'></i> | ||
{% endif %} | ||
{{ text }} | ||
</a> | ||
{% if href %} | ||
<a href='{{ href }}' class='link fs-5'> | ||
{% if icon %} | ||
<i class='bi bi-{{ icon }} text-primary me-2' aria-hidden='true'></i> | ||
{% endif %} | ||
{{ text }} | ||
</a> | ||
{% else %} | ||
<button class='btn btn-link fs-5'> | ||
{% if icon %} | ||
<i class='bi bi-{{ icon }} text-primary me-2' aria-hidden='true'></i> | ||
{% endif %} | ||
{{ text }} | ||
</button> | ||
{% endif %} |
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 @@ | ||
<div class='card px-0 text-decoration-none overflow-hidden'> | ||
<div class='ratio ratio-21x9'> | ||
<img class='img-fluid' src='https://picsum.photos/960/540' alt> | ||
</div> | ||
|
||
<div class='card-body pt-4'> | ||
{% if href is not defined %} | ||
<span class='badge badge-small border border-2 border-body text-body text-uppercase mb-2'>Nicht Verfügbar</span> | ||
{% endif %} | ||
<h3 class='h5 fw-semibold'>{{ title }}</h3> | ||
{% if description is defined %} | ||
<p class='m-0 lh-sm'> | ||
{{ description }} | ||
</p> | ||
{% endif %} | ||
|
||
{% if href is defined %} | ||
<div class='d-flex justify-content-end'> | ||
{% | ||
include 'partials::base/b_link.twig' with { | ||
text: 'Zur Anwendung', | ||
icon: 'arrow-return-right', | ||
href: href | ||
} | ||
%} | ||
</div> | ||
{% endif %} | ||
</div> | ||
</div> |
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