fix(tags.php.liquid): import bootstrap properly

This commit is contained in:
Cory Dransfeldt 2025-06-16 10:14:43 -07:00
parent 0c64cdf570
commit 81afe237f7
No known key found for this signature in database
3 changed files with 9 additions and 10 deletions

12
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "coryd.dev",
"version": "10.6.5",
"version": "10.6.6",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
"version": "10.6.5",
"version": "10.6.6",
"license": "MIT",
"dependencies": {
"minisearch": "^7.1.2",
@ -31,7 +31,7 @@
"markdown-it-prism": "^3.0.0",
"markdownlint": "0.38.0",
"markdownlint-cli": "0.45.0",
"postcss": "^8.5.5",
"postcss": "^8.5.6",
"postcss-import": "^16.1.0",
"postcss-import-ext-glob": "^2.1.1",
"prettier": "3.5.3",
@ -4039,9 +4039,9 @@
}
},
"node_modules/postcss": {
"version": "8.5.5",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.5.tgz",
"integrity": "sha512-d/jtm+rdNT8tpXuHY5MMtcbJFBkhXE6593XVR9UoGCH8jSFGci7jGvMGH5RYd5PBJW+00NZQt6gf7CbagJCrhg==",
"version": "8.5.6",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
"integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
"dev": true,
"funding": [
{

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "10.6.5",
"version": "10.6.6",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"engines": {
@ -60,7 +60,7 @@
"markdown-it-prism": "^3.0.0",
"markdownlint": "0.38.0",
"markdownlint-cli": "0.45.0",
"postcss": "^8.5.5",
"postcss": "^8.5.6",
"postcss-import": "^16.1.0",
"postcss-import-ext-glob": "^2.1.1",
"prettier": "3.5.3",

View file

@ -1,7 +1,6 @@
<?php
require __DIR__ . "/../../vendor/autoload.php";
require __DIR__ . "/../../config/dynamic/init.php";
require_once __DIR__.'/../bootstrap.php';
use App\Classes\TagFetcher;
use App\Classes\GlobalsFetcher;