All Projects → sogud → vuepress-theme-minimalism

sogud / vuepress-theme-minimalism

Licence: MIT License
minimalism vuepress theme

Programming Languages

stylus
462 projects
Vue
7211 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to vuepress-theme-minimalism

vuepress-theme-canvas
✏️ Vuepress custom theme for blogging.
Stars: ✭ 24 (+26.32%)
Mutual labels:  vuepress, vuepress-theme
hexo-theme-stellar
Elegant and powerful theme for Hexo.
Stars: ✭ 181 (+852.63%)
Mutual labels:  hexo, hexo-theme
vuepress-theme-oneN
🎈 A vuepress theme for oneN
Stars: ✭ 53 (+178.95%)
Mutual labels:  vuepress, vuepress-theme
maupassant-hexo
A simple Hexo theme forked from icylogic.
Stars: ✭ 2,418 (+12626.32%)
Mutual labels:  hexo, hexo-theme
hexo-theme-cake
🍰 It's a lovely hexo theme, sweet.
Stars: ✭ 20 (+5.26%)
Mutual labels:  hexo, hexo-theme
vuepress-theme-simple
✏️ Very Simple Blog Theme for VuePress
Stars: ✭ 89 (+368.42%)
Mutual labels:  vuepress, vuepress-theme
hexo-theme-yilia-l
简洁优雅的hexo博客主题
Stars: ✭ 24 (+26.32%)
Mutual labels:  hexo, hexo-theme
vuepress-theme-track
🎉vuepress theme
Stars: ✭ 13 (-31.58%)
Mutual labels:  vuepress, vuepress-theme
hexo-theme-cube
a theme for hexo
Stars: ✭ 53 (+178.95%)
Mutual labels:  hexo, hexo-theme
hexo-theme-freemind.bithack
Another hexo theme based on freemind.386
Stars: ✭ 45 (+136.84%)
Mutual labels:  hexo, hexo-theme
vuepress-theme-book
A VuePress theme inspired by Gitbook
Stars: ✭ 107 (+463.16%)
Mutual labels:  vuepress, vuepress-theme
hexo-theme-griddy
Hexo theme for artist & photographer showing their work that created with Bulma CSS Framework
Stars: ✭ 22 (+15.79%)
Mutual labels:  hexo, hexo-theme
vuepress-theme-cool
A custom vuepress theme with mermaid and plantuml, katex and vue components.
Stars: ✭ 57 (+200%)
Mutual labels:  vuepress, vuepress-theme
hexo-theme-lanmiao
使用bootstrap构建的类单页博客,粉色系简洁Hexo主题
Stars: ✭ 16 (-15.79%)
Mutual labels:  hexo, hexo-theme
hexo-theme-ayer
一个干净优雅的hexo主题 A clean and elegant theme for Hexo. 🐋
Stars: ✭ 1,396 (+7247.37%)
Mutual labels:  hexo, hexo-theme
hexo-theme-icalm
Monochrome theme for hexo
Stars: ✭ 121 (+536.84%)
Mutual labels:  hexo, hexo-theme
Seje
寫嘢 - A beatutiful Hexo Theme
Stars: ✭ 53 (+178.95%)
Mutual labels:  hexo, hexo-theme
vuepress-theme-macgs
💫 A vuepress theme for easyhexo.com
Stars: ✭ 16 (-15.79%)
Mutual labels:  vuepress, vuepress-theme
hexo-theme-reading
Blog Theme For Hexo :http://www.androidperformance.com/
Stars: ✭ 20 (+5.26%)
Mutual labels:  hexo, hexo-theme
picidaejs
🐦Picidae is a document generator which has gentle experience.
Stars: ✭ 24 (+26.32%)
Mutual labels:  ssr, hexo

vuepress-theme-minimalism

中文

NPM

introduction

A minimalist vuepress theme, compatible with hexo YAML front matter syntax.

preview:https://sogud.github.io

Quick Start

install

npm i -S vuepress-theme-minimalism
or
yarn add vuepress-theme-minimalism
  • Use theme in config.js.
module.exports = {
  theme: 'vuepress-theme-minimalism',
  base: '/',
  ...
}
  • new posts folder, article written in posts directory, as the topic is compiled based on the content under the posts folder. Note: Folder names are case-sensitive.

Directory Structure

.
├── docs
│   ├── .vuepress #vuepress configuration folder
│   ├── posts #Article Storage Folder
├── package.json
└── yarn.lock

write

Start writing a blog that is written in the correct format as follows.:

---
title: vuepress
tags:
  - vuepress
  - markdown
---

# vuepress-theme-minimalism

##  introduction

A minimalist vuepress theme, compatible with hexo YAML front matter syntax.

Theme configuration

Theme color configuration

New styles folder in .vuepress directory, new palette.styl Configure css variables.

The following color configurations are currently supported.

$accentColor = #31837c 
$textColor = #2c3e50 
$nprogressColor = #399c9c 

config.js configuration

module.exports = {
  // theme: 'vuepress-theme-minimalism',
  base: '/',
  title: '记录',
  description: 'description...',
  themeConfig: {
    headerText: {
      //deader text
      index: 'ホーム',
      all: '一覧',
      tags: 'カテゴリー',
      timeline: 'タイムライン',
      seacrh: '探す'
    },
    //footer text
    footerText:
      '©2020 Power by <a href="https://vuepress.vuejs.org">VuePress</a> <a href="https://github.com/onnezezt/vuepress-theme-minimalism">Theme minimalism</a>',
    homeBackground: {
      //Home Background Color
      //Set home page background color, false title is the default color
      show: true,
      fileName: '/xxx.jpg' // Background image name, stored in the public directory
    },
    PostsListPopover: false, //Whether to display the article content prompt

    darkMode: {
      //dark mode configuration
      switch: true, 
      auto: true, //automatic start
      on: '18', //Time.
      off: '6'
    },
    vssue: {
      //评论组件
      use: false,
      option: {
        owner: 'onnezezt',
        repo: 'onnezezt.github.io',
        clientId: 'xxxx',
        clientSecret: 'xxxx' // It is only necessary to use certain platforms
      }
    }
    disqus: {
      //use disqus reviews.
      use: false,
      option: {
        name: 'xxx' // Replace PAGE_URL with your page's canonical URL variable
      }
    }
  },
  markdown: {
    lineNumbers: true
  }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].