From 1027291d3af570aab2de3aeb779759b15fe3d3ec Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Tue, 30 Sep 2025 04:59:58 +0000
Subject: [PATCH] Initial Setup
---
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