diff --git a/404.php b/404.php
new file mode 100644
index 0000000..0e15ac2
--- /dev/null
+++ b/404.php
@@ -0,0 +1,46 @@
+
+
+
+
Oops, this page doesn't exist.
+
Check out some of our articles below.
+
+ 12,
+ 'offset' => 0,
+ 'orderby' => 'post_date',
+ 'order' => 'DESC',
+ 'post_type' => 'post',
+ 'post_status' => 'publish'
+ );
+ query_posts($post_section_two_args);
+ if (have_posts()):
+ while (have_posts()):
+ the_post();
+ $category = get_the_category()[0];
+ ?>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/assets/js/st-nav.js b/assets/js/st-nav.js
index e99843f..3f7f004 100644
--- a/assets/js/st-nav.js
+++ b/assets/js/st-nav.js
@@ -32,16 +32,17 @@ const iconBar = document.querySelector('.st-header-icon-bar');
const siteTitle = document.querySelector('.st-site-title');
const header = document.querySelector('.st-header');
let lastScrollPosition = 0;
+const scrollDepthActivationPoint = 100;
window.addEventListener('scroll', function(event) {
const scrollPosition = window.scrollY;
- if(scrollPosition < 5) {
+ if(scrollPosition < scrollDepthActivationPoint) {
iconBar.classList.remove('st-icon-bar-sticky');
siteTitle.classList.remove('st-title-scrolled');
header.classList.remove('st-header-scrolled');
} else {
- if(lastScrollPosition < 5) {
+ if(lastScrollPosition < scrollDepthActivationPoint) {
iconBar.classList.add('st-icon-bar-sticky');
siteTitle.classList.add('st-title-scrolled');
header.classList.add('st-header-scrolled');
diff --git a/footer.php b/footer.php
index ddeecb0..fcd74c8 100644
--- a/footer.php
+++ b/footer.php
@@ -29,9 +29,9 @@
'primary',
+ 'menu' => 'footer',
'container' => '',
- 'theme_location' => 'primary',
+ 'theme_location' => 'footer',
'items_wrap' => ''
)
);
diff --git a/functions.php b/functions.php
index f3bcffa..804b90e 100644
--- a/functions.php
+++ b/functions.php
@@ -48,7 +48,7 @@ function custom_breadcrumbs() {
$separator = '>';
$breadcrums_id = 'breadcrumbs';
$breadcrums_class = 'breadcrumbs';
- $home_title = 'Homepage';
+ $home_title = 'Home';
// If you have any custom post types with custom taxonomies, put the taxonomy name below (e.g. product_cat)
$custom_taxonomy = 'product_cat';
diff --git a/single.php b/single.php
new file mode 100644
index 0000000..97f9b07
--- /dev/null
+++ b/single.php
@@ -0,0 +1,54 @@
+
+
+