From 7cdfcfed38995f182ef6946ff2b13c812898a652 Mon Sep 17 00:00:00 2001
From: Remi  PLANEL <rplanel@pasteur.fr>
Date: Wed, 10 May 2023 17:28:22 +0200
Subject: [PATCH] use a catch-all pages

---
 content/1.introduction/index.md      |  4 +---
 content/2.defense-systems/1.PARIS.md |  1 -
 content/2.defense-systems/3.AVAST.md |  6 +++++-
 nuxt.config.ts                       |  4 +++-
 pages/[...slug].vue                  | 12 ++++++++++++
 5 files changed, 21 insertions(+), 6 deletions(-)
 create mode 100644 pages/[...slug].vue

diff --git a/content/1.introduction/index.md b/content/1.introduction/index.md
index fe74ab00..79544172 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 a7f124da..915effc0 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 fa0097b7..31a9ceb2 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 2ace7031..ab3ce3d7 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 00000000..124bfc4b
--- /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>
-- 
GitLab