From 4c519524590dccca5ea9305636edea1beec00409 Mon Sep 17 00:00:00 2001 From: Bashy Date: Tue, 7 May 2024 08:52:43 +0000 Subject: [PATCH] Initialize index.php --- index.php | 130 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 130 insertions(+) create mode 100644 index.php diff --git a/index.php b/index.php new file mode 100644 index 0000000..ee13243 --- /dev/null +++ b/index.php @@ -0,0 +1,130 @@ + + + "fas fa-user-plus fa-5x", // using https://fontawesome.com/ + "links" => array( + array("name" => "Link 1", "url" => "https://bashynx.com"), + array("name" => "Link 2", "url" => "https://bashynx.com"), + array("name" => "Link 3", "url" => "https://bashynx.com") + ) + ), + array( + "icon" => "fas fa-globe fa-5x", + "links" => array( + array("name" => "Link 4", "url" => "https://bashynx.com") + ) + ), + array( + "icon" => "fas fa-cog fa-5x", + "links" => array( + array("name" => "Link 5", "url" => "https://bashynx.com"), + array("name" => "Link 6", "url" => "https://bashynx.com"), + array("name" => "Link 7", "url" => "https://bashynx.com"), + array("name" => "Link 8", "url" => "https://bashynx.com") + ) + ), + array( + "icon" => "fas fa-gamepad fa-5x", + "links" => array( + array("name" => "Link 9", "url" => "https://bashynx.com"), + array("name" => "Link 10", "url" => "https://bashynx.com") + ) + ), + array( + "icon" => "fas fa-code fa-5x", + "links" => array( + array("name" => "Link 11", "url" => "https://bashynx.com"), + array("name" => "Link 12", "url" => "https://bashynx.com"), + array("name" => "Link 13", "url" => "https://bashynx.com") + ) + ) +); + +?> + + + + + + + <?php echo $siteTitle; ?> + + + + + + + +
+
+
+
+
+ +
+
+ +

+

+
+ +
+ + '; + echo '
'; + foreach ($column['links'] as $link) { + echo '' . $link['name'] . ''; + } + echo '
'; + } + + // Generate columns + foreach ($links as $column) { + generateColumn($column); + } + ?> + +
+
+ + + + +