diff options
| -rw-r--r-- | .gitlab-ci.yml | 1 | ||||
| -rw-r--r-- | src/main/resources/index-dev.html | 3 | ||||
| -rw-r--r-- | src/main/resources/index-prod.html | 3 | 
3 files changed, 5 insertions, 2 deletions
| diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b479eb8..d1b1518 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,6 +18,7 @@ pages:    - cp target/scala-2.12/classes/index-prod.html public/index.html    - cp target/scala-2.12/classes/reset.css public/reset.css    - cp target/scala-2.12/reading-opt.js public/main.js +  - cp target/scala-2.12/icon.png public/icon.png    - sed 's/src="[^"]*"/src="main.js"/' -i public/index.html    artifacts:      paths: diff --git a/src/main/resources/index-dev.html b/src/main/resources/index-dev.html index f9b17e7..f03bafa 100644 --- a/src/main/resources/index-dev.html +++ b/src/main/resources/index-dev.html @@ -3,8 +3,9 @@  <html lang="en">    <head>      <meta charset="UTF-8"> -    <title>reading</title> +    <title>Conseils de lecture</title>      <link rel="stylesheet" href="reset.css"> +    <link rel="icon" href="icon.png">      <script src="../reading-fastopt.js"></script>    </head> diff --git a/src/main/resources/index-prod.html b/src/main/resources/index-prod.html index 93ae2f0..e43dc66 100644 --- a/src/main/resources/index-prod.html +++ b/src/main/resources/index-prod.html @@ -3,8 +3,9 @@  <html lang="en">    <head>      <meta charset="UTF-8"> -    <title>reading</title> +    <title>Conseils de lecture</title>      <link rel="stylesheet" href="reset.css"> +    <link rel="icon" href="icon.png">      <script src="../reading-opt.js"></script>    </head> | 
