Linux中怎么用cat命令创建文件并写入数据
373
2022-11-02
Hugo项目实战-集成评论博客添加评论功能
实践效果
Quick Start
Install Hugo
brew install hugo# orport install hugohugo version
Create a New Site
hugo new site quickstart
Add a Theme
cd quickstartgit initgit submodule add themes/airspace-hugo
Then, add the theme to the site configuration:
echo 'theme = "ananke"' >> config.toml
Add Some Content
You can manually create content files (for example as content/
hugo new posts/my-first-post.md
Start the Hugo server
Now, start the Hugo server with drafts enabled:
hugo server -D
Navigate to your new site at static pages
It is simple. Just call:
hugo -D
Output will be in ./public/ directory by default (-d/--destination flag to change it, or set publishdir in the config file).
Theme Installation
使用模板方法一
git clone exampleSite/hugo server --themesDir ../..
使用模板方法二
#创建一个新的项目hugo new site demo# 主题模板安装#下载主题demo/themes将下载的airspace-hugo copy到themes,然后将exampleSite目录的内容copy到demo目录,替换全部。#运行hugo server #访问,airspace-hugo使用文档
然后再参照,GitHub Actions 自动化部署 Hugo for GitHub Pages,自动化部署。
申请域名,解析服务等。
个人博客仓库名:xxxxx.github.ioYour GitHub Pages site is currently being built from the master branc:master/rootCustom domain:xxxx.comEnforce HTTPS :yes
hexo 博客添加评论功能
设置一个评论系统
多说网易云跟帖畅言来必力(LiveRe)DisqusHypercommentsvaline Valine 诞生于2017年8月7日,是一款基于LeanCloud的快速、简洁且高效的无后端评论系统。 理论上支持但不限于静态博客,目前已有Hexo、Jekyll、Typecho、Hugo、Ghost 等博客程序在使用Valine。 特性快速安全Emoji ????无后端实现MarkDown 全语法支持轻量易用文章阅读量统计 v1.2.0+Github大礼包:gitment, gitalk(推荐),gitter(推荐); 三个都支持Markdown; 原则上来说比较靠谱的是gitment(依托于github issue,能够自己管理,而且被墙的概率小),不过兼容性不太好(需要chrome内核才行)。Gitalk 是一个基于 GitHub Issue 和 Preact 开发的评论插件。特性使用 GitHub 登录支持多语言 [en, zh-CN, zh-TW, es-ES, fr, ru, de, pl, ko]支持个人或组织无干扰模式(设置 distractionFreeMode 为 true 开启)快捷键提交评论 (cmd|ctrl + enter)
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~