Lollineon is jekyll engined blog that is LolliPop styled in light-mode and NeonSign styled in dark-mode
- Just fork this repo.
- If you use this by deploying github page. You must using
release
branch. Because css file compiled by tailwindcss is existed onlyrelease
Add following to the _config.yml
title: <Your blog name>
email: <Your email>
nickname: <Your nickname>
user_description: <Write short description about you>
profile_image: <url of your profile image> # width and height of your image must be same!
social:
github:
email:
x: <Your twitter page>
instagram:
youtube:
website: <Your other website>
Modify index.md
file and add the following
---
layout: home
title: Home
permalink: /
---
# This is My Blog
This name is LolliLemon!
Create markdown file into _posts
file. This filename following this
YYYY-mm-dd-{this is post title}.md
YYYY-mm-dd
is Date (ex: 2024-09-13)post-title
is only english and hipen-
Post header following this
---
layout: post
title: <Post title name>
date: YYYY-mm-dd HH:MM:SS (+0000)
categories: <Category-name of this post>
summary: <short summary of this post>
tags: ["tag1", "tag2"]
---
Sometimes, You need to import some images into post and index page. To import this following this
- add image you want into
assets/img/post
- write this into markdown file
![testimage](/assets/img/post/{image filename})
- Download this repo.
- Install
ruby
- Run
bundle install
for install packages. - Run
tailwind-compiler-dev.sh
and don't terminate while develop this. Because this theme use tailwindcss. while running it. CSS is compiled automticlly when you modify html files. - Run
jekyll serve
for run this.
- PR to
main
branch. no others. - DO NOT add
assets/main.css
compiled from taimwindcss. All of branches except release don't havemain.css
. this file is for only deploy.