Skip to content

Commit 9f72fa8

Browse files
authored
Merge pull request #27 from data-miner00/dev
Revert custom image container
2 parents e59f9fd + 4eb4874 commit 9f72fa8

File tree

4 files changed

+7
-50
lines changed

4 files changed

+7
-50
lines changed

components/VFooter.vue

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<script setup lang="ts">
2+
const date = new Date();
3+
</script>
4+
15
<template>
26
<footer class="footer relative pt-10 pb-10 lg:pb-24 lg:pt-28">
37
<div
@@ -156,7 +160,7 @@
156160
<footer
157161
class="pt-12 mx-auto px-6 lg:max-w-[75rem] text-gray-400 text-sm text-center lg:text-left"
158162
>
159-
Templatr &copy; 2023 by Shaun. All rights unreserved.
163+
Templatr &copy; {{ date.getFullYear() }} by Shaun. All rights unreserved.
160164
</footer>
161165
</footer>
162166
</template>

components/content/ProseImg.vue

-47
This file was deleted.

content/fr/guide.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ content/
152152

153153
![ma belle image](/images/demo.png)
154154

155-
Voici à quoi ressemble une image de portrait dans la prose. Il est centré dans un conteneur personnalisé via le fichier `ProseImg.vue` personnalisé dans le dossier `components/content` et s'étendra jusqu'à la largeur maximale disponible dans le conteneur. Les images qui seront servies avec l'application peuvent être placées dans le répertoire `public`. Par exemple, les images du dossier `/public/images` sont accessibles directement via le chemin `/images/img.jpg`.
155+
Voici à quoi ressemble une image de portrait dans la prose. Il est aligné à gauche et s'étendra jusqu'à la largeur maximale disponible dans la prose. Les images qui seront diffusées avec l'application peuvent être placées dans le répertoire "public". Par exemple, les images du dossier `/public/images` sont accessibles via le chemin `/images/img.jpg` directement.
156156

157157
```md
158158
![ma belle image](/images/demo.png)

content/guide.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ content/
150150

151151
![my cool image](/images/demo.png)
152152

153-
This is how a portrait image looks like within the prose. It is centered within a custom container via the custom `ProseImg.vue` in the `components/content` folder and will extend to the max width available in the container. Images that will be served alongside with the app can be placed within the `public` directory. For instance, images within the `/public/images` folder can be accessed via the path `/images/img.jpg` directly.
153+
This is how a portrait image looks like within the prose. It is left aligned and will extend to the max width available in the prose. Images that will be served alongside with the app can be placed within the `public` directory. For instance, images within the `/public/images` folder can be accessed via the path `/images/img.jpg` directly.
154154

155155
```md
156156
![my cool image](/images/demo.png)

0 commit comments

Comments
 (0)