上一篇博文中谈到了如何在本地使用hugo预览特定主题crisp,本文介绍主题的颜色,字体,布局的修改。
crisp主题的侧边栏默认是白色,如果想改个颜色咋办?
到github仓库 https://github.com/penn201500/hugo-crisp-theme-for-blog/ 获取 hugo-crisp-theme-for-blog/mysite/themes/crisp/layouts/partials/criticalpath.html 文件,替换本地themes目录下的同名文件,如
E:\github_projects\my_blogs\mysite\themes\hugo-theme-crisp\layouts\partials\criticalpath.html
替换之后效果:
在criticalpath.html文件中,查找font-family。然后修改字体类型,大小,颜色等
body,html
{
font-size: 1em;
line-height: 1.65em;
font-family:"Open Sans",sans-serif;
font-weight:300;color:#444
background-color: #ecf0f1;
}
侧边栏不想要头像?想添加links?只要github follow?
下面介绍如何实现这些需求
1.去掉头像
编辑layouts/partial目录下的header.html文件:
如:E:\github_projects\my_blogs\mysite\themes\hugo-theme-crisp\layouts\partials
<header id="header">
<a id="logo" href="{{ .Site.BaseURL }}"><img src="https://www.gravatar.com/avatar/1a2807faf3cca1667ff6f04bf5886eff.png" alt="{{ .Site.Title }}" />a>
<h1><a href="{{.Site.BaseURL}}">{{.Site.Title}}a>h1>
<p>{{.Description}}p>
{{ partial "follow.html" . }}
{{ partial "navigation.html" . }}
header>
id = “logo”的这一行既是图片信息,替换图片,则将 imgsrc 连接替换。 取消图片则将这行注释或者删除。注释后效果如下:
2. 添加links
可以参考配置文件:https://github.com/penn201500/hugo-crisp-theme-for-blog/blob/master/mysite/themes/crisp/layouts/partials/navigation.html
将与header.html同目录的navigation.html文件修改为:
<hr class="nav-site-separator">
<h6>Linksh6>
<nav class="nav">
<ul class="nav-list">
<font size="3">
<li class="nav-site"><a href="http://lilydjwg.is-programmer.com/" target="_blank">依云的博客a>li>
<li class="nav-site"><a href="http://evilbinary.org/" target="_blank">邪恶二进制a>li>
<li class="nav-site"><a href="http://www.wlman.cc/" target="_blank">Consec 's Bloga>li>
<li class="nav-site"><a href="http://www.linuxzen.com/" target="_blank">cold's worlda>li>
font>
ul>
nav>
这一行可以编辑一个链接。
修改后效果如下:
3. 只需要github follow
crisp主题的follow方式有facebook,twitter,linkedin,github,google+, rss 。
下面介绍如何只留github follow方式(添加或删除其他的follow方式类似)
将同目录下的follow.html修改如下:
<div id="follow-icons">
<a href="https://github.com/penn201500" rel="me"><i class="fa fa-github-square fa-2x">i>a>
div>
图标使用的是fontawesome,可以从github fork:
https://github.com/penn201500/Font-Awesome.git
或者访问fontawesome:
http://fontawesome.io/icons/
修改follow.html的效果:
4.增加tags和修改title
4.1 修改title
将E:\github_projects\my_blogs\mysite目录下的config.toml文件修改为:
baseurl = "http://www.learnbetter.club"
languageCode = "en-us"
title = "My Blog"
4.2 add tags
1.增加tags.html文件到header.html文件所在的目录。tags.html文件的内容为:
<h6 class="sitetaglisttitle">Tagsh6>
<ul class="sitetaglist">
{{ range first 10 .Site.Taxonomies.tags.ByCount }}
{{ if ge .Count 1 }}
<li><a href="/tags/{{ .Name | urlize }}">{{ .Name }} ({{ .Count }})a>li>
{{ end }}
{{ end }}
ul>
2.并修改header.html:
<header id="header">
<h1><a href="{{.Site.BaseURL}}">{{.Site.Title}}a>h1>
<p>{{.Description}}p>
{{ partial "follow.html" . }}
{{ partial "navigation.html" . }}
{{ partial "tags.html" . }}
header>
3.修改E:\github_projects\my_blogs\mysite\content\content\test.md文件为:
+++
date = "2016-05-29T23:56:41+08:00"
draft = true
title = "test"
tags = "test"
+++
hello hugo! I am test.md
显示效果为:
注:如果有其他好的博客主题,且托管在github上,可以clone到本地进行修改尝试