From 627056f72e761c1386e4ab4d72207008d9330a5e Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Mon, 10 Nov 2025 22:22:25 +0000
Subject: [PATCH] =Cleaner base

---
 content/_setup.php |   23 +++++++++--------------
 1 files changed, 9 insertions(+), 14 deletions(-)

diff --git a/content/setup.php b/content/_setup.php
similarity index 75%
rename from content/setup.php
rename to content/_setup.php
index 069e0d3..604f962 100644
--- a/content/setup.php
+++ b/content/_setup.php
@@ -28,22 +28,17 @@
  *  - 'section' => (string) the slug of the section, as defined above
  */
 
-require(AJV_DIR . '/content/art.php');
-require(AJV_DIR . '/content/design.php');
-require(AJV_DIR . '/content/development.php');
-require(AJV_DIR . '/content/strategy.php');
-require(AJV_DIR . '/content/support.php');
-require(AJV_DIR . '/content/writing.php');
 
-add_filter('jvb_content', 'ajv_content');
-function ajv_content($content):array
+require(AJV_DIR . '/content/faq.php');
+require(AJV_DIR . '/content/progress.php');
+require(AJV_DIR . '/content/terms.php');
+
+add_filter('jvb_content', 'altr_content');
+function altr_content($content):array
 {
     return [
-        'design'        => ajv_design(),
-        'development'   => ajv_development(),
-        'strategy'      => ajv_strategy(),
-        'art'           => ajv_art(),
-        'writing'       => ajv_writing(),
-        'support'       => ajv_support(),
+        'faq'       => altr_faq(),
+        'progress'  => altr_progress(),
+        'terms'     => altr_terms(),
     ];
 }
\ No newline at end of file

--
Gitblit v1.10.0