-
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 #80 from Andrenord282/main
issue fix: multiple frontend fixes #79
- Loading branch information
Showing
15 changed files
with
86 additions
and
45 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -3,16 +3,16 @@ | |
{% from "ui/buttons.html" import button %} | ||
{% from "ui/section_header.html" import section_header with context %} | ||
|
||
{% set footer_databag = { 'international_number': '+7 987 654 32 10', 'international_number_href': '+79876543210', 'european_number': '+3 123 456 789', 'european_number_href': '+3123456789', 'location': 'Georgia, Poti', 'email': 'info@site.com' } %} | ||
<footer class="page-footer"> | ||
{% set footer_databag = { 'international_number': '+7 995 557 36 66 74', 'international_number_href': '+7995557366674', 'location': 'Georgia, Poti', 'email': '[email protected]', 'donate_email': 'pereborschikovpetr@gmail.com' } %} | ||
<footer class="page-footer" id="contact-us"> | ||
<div class="container"> | ||
<div class="page-footer__in"> | ||
{{ section_header(className="page-footer__title", title="Contact Us", align_prop_title='right') }} | ||
<div class="page-footer__wrapper"> | ||
<img | ||
class="page-footer__pic" | ||
src="/static/img/upload/shelter.jpg" | ||
alt="shelter The Territory of Goodness" | ||
alt="shelter The territory of good" | ||
/> | ||
<div class="page-footer__content"> | ||
<p class="page-footer__text"> | ||
|
@@ -26,9 +26,6 @@ | |
<a class="contact-row__link" href=" {{ 'tel:' ~ footer_databag.international_number_href }}"> | ||
{{ footer_databag.international_number }} | ||
</a> | ||
<a class="contact-row__link" href="{{ 'tel:' ~ footer_databag.european_number_href }}"> | ||
{{ footer_databag.european_number }} | ||
</a> | ||
</div> | ||
</li> | ||
|
||
|
@@ -45,8 +42,15 @@ | |
</a> | ||
</div> | ||
</li> | ||
<li class="contact-row"> | ||
{{ icon(type='email', color='secondary-inverse', size='m', className='contact-row__icon')}} | ||
<div class="contact-row__content">To donate via paypal, please send money to Petr’s account: | ||
<a class="contact-row__link" href="{{ 'mailto:' ~ footer_databag.donate_email }}"> | ||
{{ footer_databag.donate_email }} | ||
</a> | ||
</div> | ||
</li> | ||
</ul> | ||
<button class="button" type="button">Donate</button> | ||
</div> | ||
</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
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
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,6 @@ | ||
{% macro video(src="", className="") %} | ||
{% macro video(src="", className="", title="") %} | ||
<div class="video-container {{className}}"> | ||
<iframe width="100%" height="100%" src="{{src}}" frameborder="0" allowfullscreen> | ||
<iframe title="{{title}}" width="100%" height="100%" src="{{src}}" frameborder="0" allowfullscreen> | ||
</iframe> | ||
</div> | ||
{% endmacro %} |
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
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,6 @@ | ||
{% macro video(src="", className="") %} | ||
{% macro video(src="", title="", className="") %} | ||
<div class="video-container {{className}}"> | ||
<iframe width="100%" height="100%" src="{{src}}" frameborder="0" allowfullscreen> | ||
<iframe title="" width="100%" height="100%" src="{{src}}" frameborder="0" allowfullscreen> | ||
</iframe> | ||
</div> | ||
{% endmacro %} |
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