windhamdavid 4 days ago
parent
commit
8ce09ead17
4 changed files with 22 additions and 18 deletions
  1. 4 2
      package-lock.json
  2. 18 15
      page-desk.php
  3. 0 1
      style.css
  4. 0 0
      v4-style.min.css

+ 4 - 2
package-lock.json

@@ -3436,7 +3436,8 @@
     "node_modules/jquery": {
       "version": "3.6.2",
       "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.2.tgz",
-      "integrity": "sha512-/e7ulNIEEYk1Z/l4X0vpxGt+B/dNsV8ghOPAWZaJs8pkGvsSC0tm33aMGylXcj/U7y4IcvwtMXPMyBFZn/gK9A=="
+      "integrity": "sha512-/e7ulNIEEYk1Z/l4X0vpxGt+B/dNsV8ghOPAWZaJs8pkGvsSC0tm33aMGylXcj/U7y4IcvwtMXPMyBFZn/gK9A==",
+      "peer": true
     },
     "node_modules/jquery-validation": {
       "version": "1.19.5",
@@ -9242,7 +9243,8 @@
     "jquery": {
       "version": "3.6.2",
       "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.2.tgz",
-      "integrity": "sha512-/e7ulNIEEYk1Z/l4X0vpxGt+B/dNsV8ghOPAWZaJs8pkGvsSC0tm33aMGylXcj/U7y4IcvwtMXPMyBFZn/gK9A=="
+      "integrity": "sha512-/e7ulNIEEYk1Z/l4X0vpxGt+B/dNsV8ghOPAWZaJs8pkGvsSC0tm33aMGylXcj/U7y4IcvwtMXPMyBFZn/gK9A==",
+      "peer": true
     },
     "jquery-validation": {
       "version": "1.19.5",

+ 18 - 15
page-desk.php

@@ -14,13 +14,13 @@ get_header(); ?>
 		<div class="row desk pt-5">
 			<div class="col-md-5">
 				<div class="entry-content">
-					<h4 class="georgia spread"><em><span class="firstcharacter">T</span>he internet is ok if you <a href="<?php echo get_template_directory_uri() . '/img/desk.png'; ?>">look in the right places</a>. It's also awash with nonsense</em>. I'm just hoping not to contribute to the nonsense. I publish little essays, notes, ideas, images, or pretty much anything else I want to share here. This site started with mostly computer related ramblings, but I went elsewhere with it after I quit the social networks. I wrote a <a href="/my-personal-website/">post about this website</a>. The easiest way to quickly scan everything on it is through the <a href="/archive/">archive</a> or <a href="/sitemap/">sitemap</a> pages.
-            Feel free to <a href="/contact/">contact me</a> if you have any feedback, questions, or just want to say hello. <br /><br />Thanks for the visit,</h4>
+					<h5 class="georgia spread"><span class="firstcharacter">T</span>he internet is ok if you <a href="<?php echo get_template_directory_uri() . '/img/desk.png'; ?>">look in the right places</a>. It's also awash with nonsense. I'm just hoping not to contribute to the nonsense. I publish little essays, notes, ideas, images, or pretty much anything else I want to share here. This site started with mostly computer related ramblings, but I went elsewhere with it after I quit the social networks. I wrote a <a href="/my-personal-website/">post about this website</a>. The easiest way to quickly scan everything on it is through the <a href="/archive/">archive</a> or <a href="/sitemap/">sitemap</a> pages.
+            Feel free to <a href="/contact/">contact me</a> if you have any feedback, questions, or just want to say hello. <br /><br />Thanks for the visit,</h5>
 					<img src="<?php echo get_template_directory_uri() . '/img/dw_signature.png'; ?>" alt="David Windham Signature"/>
 					<!--<img src="<?php echo get_template_directory_uri() . '/img/desk.png'; ?>" alt="Who Needs a Computer Anyway?" width="90%" style="margin:50px 10px 20px;border:3px solid #cecece"/>-->
         </div>
 				<div class="studio-tools d-lg-block">
-          <h5><u>Today I Learned</u></h5>
+          <p><u>Today I Learned</u></p>
 						<ul>
 							<?php pull_til(); ?>
 						</ul>
@@ -28,27 +28,30 @@ get_header(); ?>
 			</div>
 			<div class="col-md-4 studio-tools">
 				<ul>
-          <?php $sticky = get_option('sticky_posts');?>
-          <?php if( !empty($sticky) ){ ?>
-          <?php $args = array('post_type' => 'post', 'orderby' => 'modified', 'posts_per_page' => 5,'post__in' => $sticky);?>
-					<?php $stickyposts = get_posts($args); ?>
-            <li><u>Recently ( Edited )</u></li>
-            <?php foreach ($stickyposts as $post) : setup_postdata($post); ?>
-              <li style="color:#777"><?php echo get_the_modified_date('y/m/d'); ?> ( <?php echo get_the_date('y/m/d'); ?> ) - <a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
-					  <?php endforeach; ?>
-          <br>
-          <?php } ?>
 					<li><u>Recent Posts</u></li>
-					<?php $recentposts = get_posts('numberposts=67'); foreach ($recentposts as $post) : setup_postdata($post); ?>
+					<?php $recentposts = get_posts('numberposts=71'); foreach ($recentposts as $post) : setup_postdata($post); ?>
 					       <li style="color:#777"><?php echo get_the_date('y/m/d'); ?> - <a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
 					<?php endforeach; ?>
 				</ul>
 			</div>
 			<div class="col-lg-3">
-				<div class="row"style="padding:20px 0 0 0;">
+				<div class="row"style="padding:20px 0 20px 0;">
 					<?php get_search_form(); ?>
 				</div>
+				<br>
 				<div class="row">
+					<ul>
+          <?php $sticky = get_option('sticky_posts');?>
+          <?php if( !empty($sticky) ){ ?>
+          <?php $args = array('post_type' => 'post', 'orderby' => 'modified', 'posts_per_page' => 5,'post__in' => $sticky);?>
+					<?php $stickyposts = get_posts($args); ?>
+            <li><u>Recently ( Edited )</u></li>
+            <?php foreach ($stickyposts as $post) : setup_postdata($post); ?>
+              <li style="color:#777"><?php echo get_the_modified_date('y/m/d'); ?> ( <?php echo get_the_date('y/m/d'); ?> ) - <a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
+					  <?php endforeach; ?>
+          
+          <?php } ?>
+					</ul>
 				<div class="col-sm-6 studio-tools">
 						<ul>
 							<li>Year</li>

+ 0 - 1
style.css

@@ -205,7 +205,6 @@ body.contact {
 * {
 	-webkit-font-smoothing: antialiased !important;
 	text-rendering: optimizeLegibility !important;
-	font-size: 16px;
 	line-height: 1.42857143;
 }
 input,button,select,textarea {

File diff suppressed because it is too large
+ 0 - 0
v4-style.min.css


Some files were not shown because too many files changed in this diff