Skip to content

Latest commit

 

History

History
90 lines (72 loc) · 4.87 KB

README.md

File metadata and controls

90 lines (72 loc) · 4.87 KB

Mentha - Nuxt Blog Template

This is a blog template powered by Nuxt framework. The name of the template is Mentha. Currently, it uses version 3, but it will also support future versions. Versions lower than 3 will not be supported. The template is developed with Vue Composition API, with the setup in the script tag - <script setup lang="ts"></script> and TypeScript support.

Several Nuxt modules are used to make the Developer Experience (DX) more delightful.

Additionally, the TailwindCSS plugin Typography has been added to automate content styling.

Required Knowledge

To use the template, it is good to know how to download it from GitHub. The template has releases you can use out of the box by extracting them to your disk. Then it is good to know how to work with NPM to install the necessary packages and be able to start the project. Need to know Markdown syntax and Nuxt directory structure. Familiarity with Vue & Vue Router and TailwindCSS would be good.

Directory structure

PROJECT MENTHA
|   .gitignore
|   app.vue /* Entry point of the template */
|   nuxt.config.ts /* Nuxt configuration */
|   package-lock.json
|   package.json
|   README.md
|   tailwind.config.ts /* Additional TailwindCSS configuration */
|   tsconfig.json
|           
+---assets
|   \---css
|           tailwind.css /* Base TailwindCSS styles */
|           
+---components /* Reusable components */
|   |   Article.vue
|   |   ColorMode.vue /* Color mode switcher */
|   |   H1.vue
|   |   Navbar.vue /* Edit navigation of the template */
|   \---content /* Components for content files */
|           Comments.vue
|       
+---composables /* Auto imported exports by Nuxt engine */
|       utils.ts
|       
+---content /* Content directory */
|   |   index.md /* This doc is used by the home page */
|   |   
|   \---blog /* Remove fake Articles and start to add yours */
|           
+---pages /* You can add more pages here, then update Navbar component to update the navigation */
|   |   about.vue /* About page - edit with your information */
|   |   index.vue /* Home page - edit with your information */
|   |   
|   \---blog
|           index.vue /* Articles list */
|           [...slug].vue /* Every Article's page */
|           
+---public /* Static files */
|       favicon.ico
|       robots.txt
|       
\---server
        tsconfig.json

Features

There is a function added in composables/utils.js that takes a string and returns it (the same) back. The function name is _t. All strings in the template go through this function. The only purpose of this feature is to easily find all the strings that need to be translated if you add other languages ​​to the template.

There is also a function in composables/utils.js that converts an ISO date to a readable date. The function is called articleLocaleDate. It is only demonstratively added and is subject to additional efforts on your part. Date localization is an important process, so consider it carefully.

Next Steps

To develop and extend the template, it is good to add a state manager. I highly recommend Pinia, as it has a module for Nuxt. Add categories and tags for the articles. Allow users to comment. Pay attention (a lot) to SSR and SEO. You can improve the pagination with additional information about the number of articles in the blog, etc. Read out the Nuxt Content documentation. Many things can be added, such as a sitemap, automated navigation building, etc.

Changelog

v0.2.2

  • Updated the index page
  • Added content to the About page
  • Added new MDC component for the About page with props & slots support

v0.2.1

  • First public version
  • Added components/content/Comments.vue to review ways to add components from markdown files to the template
  • Added color theme support for dark and light modes