diff --git a/content/1.introduction/index.md b/content/1.introduction/index.md
index fe74ab00afd3a6510efa6235b1a4e519b76d9e1c..795441721c539221a79ad39a3b0fd25ac40e5448 100644
--- a/content/1.introduction/index.md
+++ b/content/1.introduction/index.md
@@ -9,7 +9,7 @@ Bacteriophages, or phages for short, are viruses that infect bacteria and hijack
 
 In response to this evolutionary pressure, bacteria have developed an arsenal of anti-phage defense systems. The term "defense system" here designates either a single gene or a set of genes, which expression provides the bacteria with some level of resistance against phage infection.
 
-# History
+## History
 
 The first anti-phage defense system was discovered in the early 1950s by two separate teams of researchers (Luria and Human, 1952 ; Bertani and Wiegle 1952). Luria and Human reported a mysterious phenomenon, where one phage was only capable of infecting a specific bacterial strain once. The progeny phages produced by this first round of infection had lost their ability to infect the same strain again, yet remained able to infect other bacterial strains. For them, this could only mean that "the genotype of the host in which a virus reproduces affects the phenotype of the new virus" (Luria and Human, 1952). A similar phenomenon was shortly after described by Bertani and Wiegle.
 
@@ -83,5 +83,3 @@ LURIA SE, HUMAN ML. A nonhereditary, host-induced variation of bacterial viruses
 Makarova KS, Wolf YI, Snir S, Koonin EV. Defense islands in bacterial and archaeal genomes and prediction of novel defense systems. J Bacteriol. 2011 Nov;193(21):6039-56. doi: 10.1128/JB.05535-11. Epub 2011 Sep 9. PMID: 21908672; PMCID: PMC3194920.
 
 Tal N, Sorek R. SnapShot: Bacterial immunity. Cell. 2022 Feb 3;185(3):578-578.e1. doi: 10.1016/j.cell.2021.12.029. PMID: 35120666.
-
-
diff --git a/content/2.defense-systems/1.PARIS.md b/content/2.defense-systems/1.PARIS.md
index a7f124dafa9307b7e499194db1b15bad6199dbb2..915effc02a4ec9e198d336611a0348e33e14e7c5 100644
--- a/content/2.defense-systems/1.PARIS.md
+++ b/content/2.defense-systems/1.PARIS.md
@@ -34,7 +34,6 @@ Paris type I system in _Salmonella enterica_ (GCF\__000006945.2). AriA_I:_ NP_46
 
 <br/>
 
-
 Paris type I merge system in _Sideroxydans lithotrophicus_ (GCF\__000025705.1). AriAB_I:_ WP_013030315.1
 
 ### Paris type II
diff --git a/content/2.defense-systems/3.AVAST.md b/content/2.defense-systems/3.AVAST.md
index fa0097b73dd96c8f3239ae3e3a52ffc816e62b5e..31a9ceb279384cc66efbae8bae729f3b656be931 100644
--- a/content/2.defense-systems/3.AVAST.md
+++ b/content/2.defense-systems/3.AVAST.md
@@ -1,4 +1,8 @@
-# AVAST
+---
+title: AVAST
+---
+
+# AVAST System
 
 AVAST (antiviral ATPases/NTPases of the STAND superfamily) is a group of anti-phage defense systems, active against some dsDNA phages. 
 
diff --git a/nuxt.config.ts b/nuxt.config.ts
index 2ace70319c8ff7629bdf32afd37df2876d4d9f9a..ab3ce3d7cb99834a68d633d6960a32964459c3c7 100644
--- a/nuxt.config.ts
+++ b/nuxt.config.ts
@@ -2,7 +2,9 @@
 export default defineNuxtConfig({
   modules: ['@nuxt/content', '@invictus.codes/nuxt-vuetify'],
   content: {
-    documentDriven: true
+    documentDriven: {
+      injectPage: false
+    }
   },
   vuetify: {
     vuetifyOptions: {
diff --git a/pages/[...slug].vue b/pages/[...slug].vue
new file mode 100644
index 0000000000000000000000000000000000000000..124bfc4b501798d6cd622d2ec627e8a8c99ab08a
--- /dev/null
+++ b/pages/[...slug].vue
@@ -0,0 +1,12 @@
+<template>
+  <v-container>
+    <v-row justify="center">
+      <v-col cols="auto">
+        <v-card flat color="transparent" max-width="1280">
+          <v-card-text>
+            <ContentDoc />
+          </v-card-text> </v-card
+      ></v-col>
+    </v-row>
+  </v-container>
+</template>