add resurses
This commit is contained in:
parent
e579f52ef5
commit
34044eb510
4 changed files with 33 additions and 32 deletions
|
@ -16,8 +16,8 @@ extra:
|
|||
services_section_card_description_2: The app is designed with privacy as a priority and does not identify users, or track information about them.
|
||||
services_section_card_description_3: Save Your Battery Efficiently uses your battery, doesn’t drain your battery like other navigation apps Learn more
|
||||
services_section_card_description_4: People like you helped build the app by adding locations to the OpenStreetMap, giving feedback on features, and contributing code
|
||||
single_section_title: Offline Search and Route
|
||||
single_section_description: See the place you want to go while in an underground parking garage, and navigate while on a distant hike.
|
||||
single_section_title: Freedom Is Here
|
||||
single_section_description: Discover your journey, navigate the world with privacy and community at the forefront.
|
||||
services_section_card_title_1: Offline Search and Route
|
||||
services_section_card_title_2: No Tracking or Data Collection
|
||||
services_section_card_title_3: Save Your Battery
|
||||
|
|
|
@ -6,6 +6,8 @@ extra:
|
|||
hero_title: Donate
|
||||
hero_image: /new-donate/donate-bg.png
|
||||
menu_title_pre: Home
|
||||
service_title: Created with love by enthusiast volunteers
|
||||
service_text: Donate to keep the project running
|
||||
hero_description: Donate and create better maps together!
|
||||
info_section_card_description_1: We rely on your donations to keep Organic Maps open, free, and without ads
|
||||
info_section_card_description_2: We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users
|
||||
|
|
|
@ -25,29 +25,30 @@
|
|||
<a class="p-sm footer__link" href="/news/"><span class="p-sm footer__link">News</span></a>
|
||||
<a class="p-sm footer__link" href="/download/"><span class="p-sm footer__link">Download</span></a>
|
||||
<a class="p-sm footer__link" href="/donate/"><span class="p-sm footer__link">Help</span></a>
|
||||
<a class="p-sm footer__link" href="/faq/"><span class="p-sm footer__link">Faq</span></a>
|
||||
<a class="p-sm footer__link" href="/faq/"><span class="p-sm footer__link">FAQ</span></a>
|
||||
<a class="p-sm footer__link" href="https://omaps.app/api"><span class="p-sm footer__link">API</span></a>
|
||||
<a class="p-sm footer__link" href="/about/"><span class="p-sm footer__link">About</span></a>
|
||||
|
||||
|
||||
|
||||
<!-- -->
|
||||
<!-- {% for page in [home, news] | concat(with=home.pages) %}-->
|
||||
<!-- {% set translated = page.translations | filter(attribute='lang', value=lang) | first %}-->
|
||||
<!-- {% if translated %}-->
|
||||
<!-- {% if "_index" in translated.path %}-->
|
||||
<!-- {% set page = get_section(path=translated.path) %}-->
|
||||
<!-- {% else %}-->
|
||||
<!-- {% set page = get_page(path=translated.path) %}-->
|
||||
<!-- {% endif %}-->
|
||||
<!-- {% endif %}-->
|
||||
<!-- -->
|
||||
<!-- {% for page in [home, news] | concat(with=home.pages) %}-->
|
||||
<!-- {% set translated = page.translations | filter(attribute='lang', value=lang) | first %}-->
|
||||
<!-- {% if translated %}-->
|
||||
<!-- {% if "_index" in translated.path %}-->
|
||||
<!-- {% set page = get_section(path=translated.path) %}-->
|
||||
<!-- {% else %}-->
|
||||
<!-- {% set page = get_page(path=translated.path) %}-->
|
||||
<!-- {% endif %}-->
|
||||
<!-- {% endif %}-->
|
||||
|
||||
<!-- {% if page.extra.menu_title %}-->
|
||||
<!-- {% if resource.path != page.path %}<a class="p-sm footer__link" href="{{ page.permalink | replace(from=config.base_url, to="") | safe }}">{% endif %}-->
|
||||
<!-- <span class="p-sm footer__link">{{ page.extra.menu_title }}</span>-->
|
||||
<!-- {%- if resource.path != page.path %}</a>{% endif %}-->
|
||||
<!-- {% endif %}-->
|
||||
<!-- {% endfor %}-->
|
||||
<a class="p-sm footer__link" href="mailto:hello@organicmaps.app">{{ trans(key='contact', lang=lang) }}</a>
|
||||
<!-- {% if page.extra.menu_title %}-->
|
||||
<!-- {% if resource.path != page.path %}<a class="p-sm footer__link" href="{{ page.permalink | replace(from=config.base_url, to="") | safe }}">{% endif %}-->
|
||||
<!-- <span class="p-sm footer__link">{{ page.extra.menu_title }}</span>-->
|
||||
<!-- {%- if resource.path != page.path %}</a>{% endif %}-->
|
||||
<!-- {% endif %}-->
|
||||
<!-- {% endfor %}-->
|
||||
<!-- <a class="p-sm footer__link" href="mailto:hello@organicmaps.app">{{ trans(key='contact', lang=lang) }}</a> -->
|
||||
</nav>
|
||||
<div class="switch-theme">
|
||||
<div class="switch-theme__toggle"></div>
|
||||
|
@ -59,6 +60,4 @@
|
|||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
|
@ -1,18 +1,18 @@
|
|||
<script>
|
||||
if (window.matchMedia('(min-width: 991px)').matches) {
|
||||
if (window.matchMedia('(min-width: 1px)').matches) {
|
||||
let targetElement = document.querySelectorAll('.animation');
|
||||
|
||||
if(targetElement){
|
||||
if (targetElement) {
|
||||
targetElement.forEach(item => {
|
||||
let observer = new IntersectionObserver(function(entries, observer) {
|
||||
entries.forEach(function(entry) {
|
||||
let observer = new IntersectionObserver(function (entries, observer) {
|
||||
entries.forEach(function (entry) {
|
||||
let animationRight = entry.target.className.includes('animation--right')
|
||||
let animationLeft = entry.target.className.includes('animation--left')
|
||||
let animationDown = entry.target.className.includes('animation--down')
|
||||
let animationRightRevers = entry.target.className.includes('animation--right-revers')
|
||||
if (entry.isIntersecting) {
|
||||
|
||||
if(animationRight) {
|
||||
if (animationRight) {
|
||||
item.classList.add('animation--right-play');
|
||||
}
|
||||
if (animationLeft) {
|
||||
|
@ -23,11 +23,11 @@
|
|||
item.classList.add('animation--down-play');
|
||||
}
|
||||
if (animationRightRevers) {
|
||||
item.classList.add('animation--play-right-revers');
|
||||
item.classList.add('animation--play-right-revers');
|
||||
}
|
||||
|
||||
} else {
|
||||
if(animationRight) {
|
||||
if (animationRight) {
|
||||
item.classList.remove('animation--right-play');
|
||||
}
|
||||
if (animationLeft) {
|
||||
|
@ -36,8 +36,8 @@
|
|||
if (animationDown) {
|
||||
item.classList.remove('animation--down-play');
|
||||
}
|
||||
if (animationRightRevers) {
|
||||
item.classList.remove('animation--play-right-revers');
|
||||
if (animationRightRevers) {
|
||||
item.classList.remove('animation--play-right-revers');
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue