From 6b184ca014165d2c2924960b2ee4be0058cc7a7e Mon Sep 17 00:00:00 2001 From: Dendy Faist Date: Sun, 9 Feb 2025 14:31:14 +0900 Subject: [PATCH] chore: Cleanup template and importmap stuff from default values --- assets/app.js | 9 --------- assets/styles/app.css | 3 --- templates/anki/index.html.twig | 20 -------------------- 3 files changed, 32 deletions(-) delete mode 100644 templates/anki/index.html.twig diff --git a/assets/app.js b/assets/app.js index 8725cc5..7624b51 100644 --- a/assets/app.js +++ b/assets/app.js @@ -1,10 +1 @@ -import './bootstrap.js'; -/* - * Welcome to your app's main JavaScript file! - * - * This file will be included onto the page via the importmap() Twig function, - * which should already be in your base.html.twig. - */ import './styles/app.css'; - -console.log('This log comes from assets/app.js - welcome to AssetMapper! 🎉'); diff --git a/assets/styles/app.css b/assets/styles/app.css index dd6181a..e69de29 100644 --- a/assets/styles/app.css +++ b/assets/styles/app.css @@ -1,3 +0,0 @@ -body { - background-color: skyblue; -} diff --git a/templates/anki/index.html.twig b/templates/anki/index.html.twig deleted file mode 100644 index 18fc9d2..0000000 --- a/templates/anki/index.html.twig +++ /dev/null @@ -1,20 +0,0 @@ -{% extends 'base.html.twig' %} - -{% block title %}Hello AnkiController!{% endblock %} - -{% block body %} - - -
-

Hello {{ controller_name }}! ✅

- - This friendly message is coming from: - -
-{% endblock %}