Skip to content

Commit

Permalink
Optimization, improved speculation rules, added log points, metadata …
Browse files Browse the repository at this point in the history
…additions, a11y reorganization

Style note: text links within articles will now get a dotted underline by default
  • Loading branch information
chrisblakley committed Jul 25, 2024
1 parent e9a8b8f commit d6ccb43
Show file tree
Hide file tree
Showing 49 changed files with 261 additions and 162 deletions.
2 changes: 1 addition & 1 deletion .github/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nebula-wp",
"title": "Nebula",
"description": "Advanced Starter WordPress Theme for Developers",
"version": "12.0.7.435",
"version": "12.2.25.642",
"homepage": "https://gearside.com/nebula/",
"repository": {
"type": "git",
Expand Down
8 changes: 4 additions & 4 deletions 404.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
<?php get_template_part('inc/nebula_drawer'); ?>

<?php nebula()->timer('404 Template'); ?>
<section id="content-section">
<main id="content-section" role="main">
<div class="container">
<div class="row">
<div class="col">
<?php nebula()->breadcrumbs(); ?>
</div><!--/col-->
</div><!--/row-->
<div class="row">
<main id="top" class="col" role="main">
<div id="top" class="col">
<article id="post-0" class="post error404 not-found">
<?php if ( get_theme_mod('title_location') === 'content' ): ?>
<h1 class="page-title"><?php _e('Not Found', 'nebula'); ?></h1>
Expand Down Expand Up @@ -58,12 +58,12 @@

<?php do_action('nebula_404_content'); ?>
</article>
</main><!--/col-->
</div><!--/col-->

<?php get_sidebar(); ?>
</div><!--/row-->
</div><!--/container-->
</section>
</main>
<?php nebula()->timer('404 Template', 'end'); ?>

<?php get_footer(); ?>
4 changes: 2 additions & 2 deletions Nebula-Child/assets/css/admin.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Nebula-Child/assets/scss/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@
@import "header";
@import "sidebar";
@import "footer";

//Enable View Transitions
@view-transition {navigation: auto;}
2 changes: 1 addition & 1 deletion Nebula-Child/resources/sw.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//BEGIN automated edits. These will be automatically overwritten.
const THEME_NAME = 'nebula-child';
const NEBULA_VERSION = 'v12.0.7.435'; //Tuesday, May 7, 2024 10:26:15 AM
const NEBULA_VERSION = 'v12.2.25.642'; //Thursday, July 25, 2024 3:24:52 PM
const OFFLINE_URL = 'https://nebula.gearside.com/offline/';
const OFFLINE_IMG = 'https://nebula.gearside.com/wp-content/themes/Nebula-main/assets/img/offline.svg';
const META_ICON = 'https://nebula.gearside.com/wp-content/themes/Nebula-main/assets/img/meta/android-chrome-512x512.png';
Expand Down
4 changes: 2 additions & 2 deletions Nebula-Child/style.css

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions archive.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,22 @@
<?php get_template_part('inc/nebula_drawer'); ?>

<?php nebula()->timer('Archive Template'); ?>
<section id="content-section">
<main id="content-section" role="main">
<div class="container">
<div class="row">
<div class="col">
<?php nebula()->breadcrumbs(); ?>
</div><!--/col-->
</div><!--/row-->
<div class="row">
<main id="top" class="col-md" role="main">
<div id="top" class="col-md">
<?php get_template_part('loop', 'archive'); ?>
</main><!--/col-->
</div><!--/col-->

<?php get_sidebar(); ?>
</div><!--/row-->
</div><!--/container-->
</section>
</main>
<?php nebula()->timer('Archive Template', 'end'); ?>

<?php get_footer(); ?>
4 changes: 2 additions & 2 deletions assets/css/admin.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions assets/css/critical.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions assets/css/login.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d6ccb43

Please sign in to comment.