0.0.1 • Published 5 years ago

vuepress-theme-adv v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

vuepress-theme-adv

Simple VuePress theme with blogging support.

Screenshot
Screenshot of Valle VuePress theme

Under development, not ready for use!

This is a work in progress project to see the possible blogging capabilities of VuePress. A lot of stuff is still under development and is not ready to be used in production.

Installing

  • yarn install vuepress-theme-valle or npm install vuepress-theme-valle --save
  • Inside your existing VuePress project, create (if not present) config.js inside .vuepress folder.
  • Add theme: 'valle' to the config object.
  • That's it! VuePress now uses Valle as its theme.

Theme Config

Theme specific options in VuePress config.

module.exports = {
  // The theme uses `title` and `description`
  title: 'My Blog',
  description: 'My vuesome blog',

  themeConfig: {
    // Author specific metadata. Used for homepage bio.
    author: {
      name: 'John Doe',
      social: {
        facebook: 'url',
        twitter: 'url',
        linkedin: 'url',
        instagram: 'url'
      }
    },
    // defaults to '/posts/' if postDir isn't provided.
    postDir: '/posts/'
  }
}

Project based in vuepress theme from yliaho.