主題追求極簡,根據 vuepress 的默認主題修改而成,官方的主題配置仍然適用;
ting主題預覽地址vue
cd ting-Blog npm install vuepress-theme-ting
// .vuepress/config.js module.exports = { title: 'YATING',//網站名稱 description: '用心寫代碼,不辜負程序員之名',//網站描述 //head標籤 head: [ ['link', { rel: 'stylesheet', href: '/img/logo.ico' }],//注意"/"就是public資源目錄。標籤的logo ], themeConfig: { author:'tinger', headImg:'/img/yating.jpg',//頭像 //導航欄 nav: [ { text: '主頁', link: '/' }, { text: '目錄',link:'/config/catalog'}, { text: '項目列表', link: '/config/about' }, { text: 'Github',type:'url', link: 'https://github.com/Chenyating' }, ], lastUpdated: 'Last Updated', smoothScroll: true, pageNum:5,//目錄每頁顯示條數 //gitalk留言設置 gitalk:{ clientID: '5b8613cfe15e02db85b7', clientSecret: 'd4129094c33b8da73e873470fb89aea53dfaf396', githubName:'Chenyating' }, footer:'粵ICP備案號:18150247號', theme:'ting'//使用vuepress-theme-ting 主題 } }
// config/catalog.md --- layout: catalog --- # 你的內容
// config/README.md --- layout: config showMessage: false title: 聯繫方式 --- # 你的內容
// /README.md --- layout: index showMessage: false title: vuepress-theme-ting --- # 你的內容
在根目錄下新建config文件git
docs │ ├─.vuepress │ ├─── public │ └─config.js │ ├─config │ ├─── catalog.md │ └─── README.md │ ├─README.md └─words:您的文檔
--- layout: index title: Home showMessage: false; ---
layout:默認值爲layout程序員
title:文章標題github
showMessage:是否顯示留言欄,側邊欄;默認爲truenpm
vuepress dev docs
vuepress build docs
若是你在使用該主題出現問題可與我聯繫解決。ui