From 250aa8e93dcba72099e83d6bcb0c5cbb0d91bf7d Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Wed, 2 Apr 2025 14:42:28 +0200 Subject: [PATCH] fix(content): changed wording and updated links --- public/examples.php | 8 ++++---- public/features.php | 6 +++--- public/index.php | 14 +++++++------- public/shell.php | 6 +++--- .../index_assets/compiled.html.php | 2 +- .../HTMLCodeDemoElement/index_assets/demo.php.php | 2 +- 6 files changed, 19 insertions(+), 19 deletions(-) diff --git a/public/examples.php b/public/examples.php index 3b2d1f2..ac2ea53 100644 --- a/public/examples.php +++ b/public/examples.php @@ -24,22 +24,22 @@ - - @@ -43,7 +43,7 @@

..or include that page with the response

Vevisir pages, snippets, and other PHP files can be inlined with the response using VV::include.

- diff --git a/public/index.php b/public/index.php index 0c551c8..06ab110 100644 --- a/public/index.php +++ b/public/index.php @@ -15,14 +15,14 @@

Automatic soft navigation

-

Load the shell of your website once, and soft-navigate between pages on the same host. That's what Vegvisir will automatically handle for you - without any ugly handle attributes.

+

Load the shell of your website once and soft-navigate between pages on the same host. Vegvisir will handle that automatically for you without any additional attributes, just use normal anchor tags.

@@ -34,14 +34,14 @@

Asset injection

-

Bundle page-specific CSS and JavaScript from separate files directly with your markdown. Vegvisir will import and minify CSS and JavaScript on the fly and return the result as compiled HTML.

+

Bundle page-specific CSS and JavaScript with your templating markdown. Vegvisir will import and minify CSS and JavaScript on the fly. The compiled result is returned in a single response.

@@ -56,7 +56,7 @@

No tracking, no telemetry, no spying, and a fully available source code licensed under GNU GPLv3. Vegvisir will always be free, libre software.

diff --git a/public/shell.php b/public/shell.php index 9abf7c4..f4e471a 100644 --- a/public/shell.php +++ b/public/shell.php @@ -3,7 +3,7 @@ - + @@ -41,7 +41,7 @@ - Vegvisir + Vegvisir - A PHP and JavaScript web framework @@ -84,7 +84,7 @@ diff --git a/snippets/HTMLCodeDemoElement/index_assets/compiled.html.php b/snippets/HTMLCodeDemoElement/index_assets/compiled.html.php index 140b1ad..5f7f3ca 100644 --- a/snippets/HTMLCodeDemoElement/index_assets/compiled.html.php +++ b/snippets/HTMLCodeDemoElement/index_assets/compiled.html.php @@ -1 +1 @@ -
<style>h1{color:salmon;}button{padding:10px;}</style>
    <section>
        <h1>Hello world</h1>
    </section>
<script>document.querySelector("button").addEventListener("click",event=>event.target.innerText="Button clicked!");</script>
\ No newline at end of file +
<style>h1{color: salmon;}button{padding:10px;}</style>
<section><h1>Hello world</h1></section>
<script>document.querySelector("button").addEventListener("click",event=>event.target.innerText="Button clicked!");</script>
\ No newline at end of file diff --git a/snippets/HTMLCodeDemoElement/index_assets/demo.php.php b/snippets/HTMLCodeDemoElement/index_assets/demo.php.php index d769d72..2abf0f4 100644 --- a/snippets/HTMLCodeDemoElement/index_assets/demo.php.php +++ b/snippets/HTMLCodeDemoElement/index_assets/demo.php.php @@ -1 +1 @@ -
<style><?= VV::css("demo.css"?></style>
    <section>
        <h1>Hello world</h1>
    </section>
<script><?= VV::css("demo.js"?></script>
\ No newline at end of file +
<style><?= VV::css("demo.css"?></style>
<section>
    <h1>Hello world</h1>
</section>
<script><?= VV::css("demo.js"?></script>
\ No newline at end of file