Blog history

Blog modification history

2021/05/03

  • font size
  • mathjax supporting $e^{i \pi} + 1 = 0$
  • author sidebar
  • quick start tag removal
  • favicon application

2021/05/04

  • code block highlight
def function():
    print('hello world')

2021/05/05

  • highlight need inpreter as python, latex, etc.

2021/05/06

  • Markdown style table requires at least eight hyphen
  • Markdown style code highlight working with backtick (216ec43)
    def foo():
      print("hello foo")
    
  • default variable get show-date (6e1bc4c and ee42ba3)
  • local: tzinfo error clear reference1 and reference2
  • change link color (only local execution)

2021/05/07

  • --future command when bundle exec jekyll serve

2021/05/10

  • favicon (assets/images/favicon_io/) folder

2021/05/11

  • menu
    1. _data/navigation.yml modification
    2. write .md files in _pages/
    3. use permalink to add homepage base address + permalink
  • category
    1. In _pages/categories/ folders, add categories what I want
    2. write permalink: /categories/category_name or [category name]
  • taxonomy: applied cateogories or tag names
  • index.html got sidebar_main true
  • sidebar with liquid syntax
  • adding category to sidebar
    1. add _pages/categories/ an category
    2. paste below form in markdown file
       ---
       title: "Title of category"
       permalink: /categories/category name/
       layout: category
       author_profile: true
       sidebar_main: true
       ---
      
       Category description
      
              
              
      
    3. modify /_includes/nav_list_main files to display category with liquid syntax
  • avatar change _sass/minimal_mistakes/_sidebar.scss
  • more detail

2021/05/12

2021/05/20

  • Add Database Category

2021/05/27

2021/05/28

  • add classes: wide to index.html

2021/06/01

2021/06/10

  • add OS Category

2021/06/18

  • add back-end sub category

2021/07/23

  • connect to google analytics
  • reference here
  • width change in _variable.scss
  • change &hover opacity to 1 in _sidebar.scss
  • add :hover to _sidebar.scss
    li {
      font-family: $sans-serif;
      font-size: $type-size-6;
      line-height: 1.5;
      :hover {
        text-decoration: underline;
      }
    }
    
  • add :hover to _navigation.scss
    &:hover {
          color: $link-color-hover;
          font-weight: bold;
          color: red;
        }
    
  • change pagination list postion to center by _navigation.scss
    ul {
      margin: 0;
      padding: 0;
      list-style-type: none;
      font-family: $sans-serif;
      font-size: 0; // to get rid of blank between li elements
      text-align: center;   // to align center pagination list
    }
    
    li {
      display: inline-block;
      // float: left;
      margin-left: -1px;
    
  • change scrollbar referenced here and here
    • webkit-scrollbar: total scrollbar window
    • webkit-scrollbar-thumb: scrollbar
    • webkit-scollbar-track: track of scrollbar
  • add scrollbar.html to _includes and {\% include scrollbar.html \%} to \<head\> in default.html
  • change Recent post postion by adding text-align: cneter; to .archive__subtitle _archive.scss
  • add type scale hover in _variables.scss
  • add a:hover to .archive__item in _archive.scss

2021/08/09

  • insert teaser image
header:
  teaser: "teaser image path"

2021/08/12

  • change categories

2021/08/14

Updated:

Leave a comment