Skip to content

Commit

Permalink
11-21-2021
Browse files Browse the repository at this point in the history
  • Loading branch information
midkiffaries committed Nov 21, 2021
1 parent a324a36 commit d3c9926
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
9 changes: 6 additions & 3 deletions assets/css/tedilize.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Document
*********************/

body {
background-color: #fdfdfd;
background-color: #fff;
color: #111;
font-size: 1rem;
line-height: 1.5;
Expand Down Expand Up @@ -495,6 +495,9 @@ button,
cursor: pointer;
font-size: inherit;
margin: 0;
accent-color: currentColor;
width: 1rem;
height: 1rem;
}

textarea {
Expand Down Expand Up @@ -735,8 +738,8 @@ Responsive elements
/* Work around for Phones with a 'notch' */
@supports(padding:max(0px)) {
body {
padding-left: min(0vmin, env(safe-area-inset-left));
padding-right: min(0vmin, env(safe-area-inset-right));
padding-left: min(0vmin, env(safe-area-inset-left));
padding-right: min(0vmin, env(safe-area-inset-right));
}
}

Expand Down
4 changes: 2 additions & 2 deletions footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
</div>
</footer>

<?php wp_footer(); ?>

<script src="<?php echo get_template_directory_uri(); ?>/assets/scripts/scripts.js"></script>
<script src="<?php echo get_template_directory_uri(); ?>/assets/scripts/modals.js"></script>

<?php wp_footer(); ?>

</body>
</html>
4 changes: 3 additions & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@

<section class="blog-page-title">
<h2 class="page-title" itemprop="title">The Blog</h2>
<?php echo GetPageContent('page_for_posts'); // Get blog page content ?>
<div class="blog-page-text">
<?php echo GetPageContent('page_for_posts'); // Get blog page content ?>
</div>
</section>

<?php if (have_posts()) : ?>
Expand Down
2 changes: 1 addition & 1 deletion single.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<div class="single-entry-date"><time datetime="<?php printf(get_the_date('c')); ?>" itemprop="datePublished"><?php the_date(); ?></time></div>
<h2 class="single-entry-title" id="<?php echo $post->post_name; ?>" itemprop="title"><?php the_title(); ?></h2>
<div class="single-entry-author">By <a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ), get_the_author_meta( 'user_nicename' ) ); ?>" itemprop="author" rel="author"><?php the_author(); ?></a></div>
<!--div class="single-entry-comments"><a href="#Comments"><?php //comments_number('No comments', 'One comment', '% comments'); ?></a></div-->
<!--div class="single-entry-comments"><a href="#Comments"><?php comments_number('No comments', 'One comment', '% comments'); ?></a></div-->
</header>
<div class="single-entry-content <?php echo ResizeFontClass($post->post_content); ?>">
<?php the_content('<p>Continue Reading &raquo;</p>'); ?>
Expand Down

0 comments on commit d3c9926

Please sign in to comment.