Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yliaho/vuepress-theme-valle
Blog theme for VuePress
https://github.com/yliaho/vuepress-theme-valle
blog static-site vue vuepress
Last synced: 4 days ago
JSON representation
Blog theme for VuePress
- Host: GitHub
- URL: https://github.com/yliaho/vuepress-theme-valle
- Owner: yliaho
- License: mit
- Created: 2018-04-24T09:25:13.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-05-14T10:10:07.000Z (over 6 years ago)
- Last Synced: 2024-10-08T09:42:07.310Z (about 1 month ago)
- Topics: blog, static-site, vue, vuepress
- Language: Vue
- Homepage:
- Size: 283 KB
- Stars: 27
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - yliaho/vuepress-theme-valle - Blog theme for VuePress (vue)
README
# vuepress-theme-valle
> Simple [VuePress](https://github.com/vuejs/vuepress) theme with blogging support.
| Screenshot |
| ------------------------------------------------------- |
| ![Screenshot of Valle VuePress theme](./screenshot.png) |## **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.
```javascript
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/'
}
}
```