Skip to content

Instantly share code, notes, and snippets.

@srueegger
Created July 15, 2019 09:10
Show Gist options
  • Save srueegger/b169ddde537b75ab95da3a5d645ad8e2 to your computer and use it in GitHub Desktop.
Save srueegger/b169ddde537b75ab95da3a5d645ad8e2 to your computer and use it in GitHub Desktop.
PW Reset
<?php
get_header();
if ( have_posts() ) : while ( have_posts() ) : the_post();
?>
<picture>
<img data-src="<?php echo THEME_IMAGES; ?>/cloud.svg" class="page-cloud d-none d-lg-block lazy" alt="">
</picture>
<picture>
<source data-srcset="<?php echo THEME_IMAGES; ?>/sun@2x.png 2x, <?php echo THEME_IMAGES; ?>/sun.png 1x">
<img data-src="<?php echo THEME_IMAGES; ?>/sun.png" class="page-sun d-none d-lg-block lazy" alt="">
</picture>
<main id="page-<?php the_ID(); ?>" <?php post_class('normalpage'); ?>>
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-lg-8">
<?php the_title('<h1 class="page-title">', '</h1>'); ?>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 col-lg-8">
<?php the_content(); ?>
<div style="" class="doubleSpacing">
<div data-gigyaScreenset="AdventureWorld-RegistrationLogin" data-gigyaStartScreen="gigya-reset-password-screen" style="margin: auto;">
<!-- Gigya Register Popup will be added here -->
</div>
<script type="text/javascript" src="https://adventure-world.ch/wp-content/themes/adventure-world/dist-assets/js/screenset.min.js"></script>
</div>
<div class="spacer" style="height: 64px;"></div>
</div>
</div>
</div>
</main>
<?php
endwhile; endif;
get_footer();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment