📅  最后修改于: 2023-12-03 15:01:27.083000             🧑  作者: Mango
irfat
主题irfat
是一款基于 Bootstrap 和 jQuery 开发的现代化博客主题。该主题以其简洁、响应式和自适应特性而受到程序员的青睐。
irfat
主题包。_layouts
、 _includes
和 _sass
文件夹中。_config.yml
文件以配置主题。在 _config.yml
文件中,你可以按照下面的格式对主题进行配置:
# irfat theme settings
irfat:
title: "My Awesome Blog"
logo: "/assets/images/logo.png"
author:
name: "John Doe"
email: "johndoe@example.com"
about: "I am a programmer who loves coding and tinkering with electronics in my free time."
social:
twitter: "johndoe"
linkedin: "johndoe"
github: "johndoe"
通过在 _posts
文件夹中添加 Markdown 文件,你可以轻松地创建新文章。以下是一个示例文件:
---
layout: post
title: "My First Post"
subtitle: "Welcome to my blog"
date: 2020-01-01 00:00:00 -0700
tags: blog jekyll irfat
image: "/assets/images/sample-image.jpg"
---
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed eget pulvinar ipsum, id volutpat erat.
在文章中添加小标题:
## My Subtitle
使用 Jekyll 的默认代码高亮功能:
{% highlight ruby %}
def my_method(args)
puts "Hello, world!"
end
{% endhighlight %}
或使用 Prism.js 代码高亮插件(添加了 highlight
类):
```ruby highlight
def my_method(args)
puts "Hello, world!"
end
```
使用 image
属性添加图片:
---
layout: post
title: "My First Post"
subtitle: "Welcome to my blog"
date: 2020-01-01 00:00:00 -0700
tags: blog jekyll irfat
image: "/assets/images/sample-image.jpg"
---
将头像图片命名为 avatar.png
并将其放置在 _includes
目录中。
在 _config.yml
文件中配置你的社交媒体链接:
# irfat theme settings
irfat:
social:
twitter: johndoe
linkedin: johndoe
github: johndoe
如有任何疑问或问题,请查看 irfat GitHub 仓库 或 Jekyll 官方文档。