From b0e23a3e6eedb8336cefff6209d7ebc537ecd623 Mon Sep 17 00:00:00 2001 From: George Lemon Date: Thu, 18 Jan 2024 19:10:26 +0200 Subject: [PATCH] add test app Signed-off-by: George Lemon --- tests/app/storage/.gitkeep | 0 tests/app/templates/layouts/base.timl | 0 tests/app/templates/partials/btn.timl | 1 + tests/app/templates/views/index.timl | 3 ++- 4 files changed, 3 insertions(+), 1 deletion(-) mode change 100644 => 100755 tests/app/storage/.gitkeep mode change 100644 => 100755 tests/app/templates/layouts/base.timl create mode 100644 tests/app/templates/partials/btn.timl mode change 100644 => 100755 tests/app/templates/views/index.timl diff --git a/tests/app/storage/.gitkeep b/tests/app/storage/.gitkeep old mode 100644 new mode 100755 diff --git a/tests/app/templates/layouts/base.timl b/tests/app/templates/layouts/base.timl old mode 100644 new mode 100755 diff --git a/tests/app/templates/partials/btn.timl b/tests/app/templates/partials/btn.timl new file mode 100644 index 0000000..896ae31 --- /dev/null +++ b/tests/app/templates/partials/btn.timl @@ -0,0 +1 @@ +button.btn: "Click me!" \ No newline at end of file diff --git a/tests/app/templates/views/index.timl b/tests/app/templates/views/index.timl old mode 100644 new mode 100755 index e8ec478..8b7aa2d --- a/tests/app/templates/views/index.timl +++ b/tests/app/templates/views/index.timl @@ -1,2 +1,3 @@ div.container > div.row > div.col-12 - h1: "Hello!" \ No newline at end of file + h1: "Hello!" + @include "btn" \ No newline at end of file