Skip to content

sweetcase-production/lollineon

Repository files navigation

LolliNeon

logo

Lollineon is jekyll engined blog that is LolliPop styled in light-mode and NeonSign styled in dark-mode

👓 Preview

light-mode


dark-mode

💿 How To install

Install Packages

  • 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 only release

✔️ Usage

Setting Configuration

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>

Home (About) Page

Modify index.md file and add the following

---
layout: home
title: Home
permalink: /
---

# This is My Blog

This name is LolliLemon!

Posting

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"]
---

Upload And Import Image Into markdown files

Sometimes, You need to import some images into post and index page. To import this following this

  1. add image you want into assets/img/post
  2. write this into markdown file
![testimage](/assets/img/post/{image filename})

🔧 Development

  1. Download this repo.
  2. Install ruby
  3. Run bundle install for install packages.
  4. 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.
  5. Run jekyll serve for run this.

Roll of Pull Request

  • PR to main branch. no others.
  • DO NOT add assets/main.css compiled from taimwindcss. All of branches except release don't have main.css. this file is for only deploy.