siongui / pelican-template

pelican template website for generating my blog

Home Page:https://siongui.github.io/pelican-template/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to Develope

Development Tool: Pelican (static site generator written in Python)

Development Environment: Ubuntu 20.04

First-time Setup

  1. On a fresh/clean installation of Ubuntu, update system first. Otherwise will get unable to locate package error. See this SO answer.

    $ sudo apt-get update
  2. Install git and pip:

    $ sudo apt-get install git
    $ sudo apt-get install python3-pip

    From the answer in Ask Ubuntu, we can use python-is-python3 and prevent Python 2 from being installed on Ubuntu 20.04

    $ sudo apt-get install python-is-python3
    $ sudo apt-mark hold python2 python2-minimal python2.7 python2.7-minimal libpython2-stdlib libpython2.7-minimal libpython2.7-stdlib
  3. Install language packages to add locale (English, Traditional Chinese, and Thai in this example):

    $ sudo apt-get install language-pack-en
    $ sudo apt-get install language-pack-zh-hant
    $ sudo apt-get install language-pack-th

    Or you can install languages in "Settings" -> "Region & Language", which installs more related packages such as fonts for languages.

  4. git clone source code:

    $ cd
    $ mkdir dev
    $ cd ~/dev/
    $ git clone https://github.com/siongui/pelican-template.git --depth=1
    # or clone with full depth
    $ git clone https://github.com/siongui/pelican-template.git YOUR_REPO
  5. Install Python tools:

    $ cd ~/dev/YOUR_REPO/
    $ pip3 install -r requirements.txt

    Note that in .travis.yml, pip is actually pip3 if bionic and python 3.8 is set in Travis CI config.

  6. Install Pelican i18n_subsites plugin and download normalize.css:

    $ cd ~/dev/YOUR_REPO/
    $ make download
  7. Generate CSS file:

    $ cd ~/dev/YOUR_REPO/
    $ make scss

Daily Development

# start edit and develope
$ cd ~/dev/YOUR_REPO/
# re-generate the website and start dev server
$ make
# open your browser and preview the website at http://localhost:8000/

Auto-deploy by Travis CI

See GitHub Pages Deployment - Travis CI.

First save your personal access token in repository settings.

For User Pages, the following is sample config:

deploy:
  provider: pages
  repo: USERNAME/USERNAME.github.io
  target_branch: master
  skip_cleanup: true
  github_token: $GITHUB_TOKEN
  local_dir: output
  on:
    branch: master

For Project Pages, the following is sample config:

deploy:
  provider: pages
  skip_cleanup: true
  github_token: $GITHUB_TOKEN
  local_dir: output
  on:
    branch: master

See .gitlab-ci.yml.

  1. Use Ubuntu image in Docker Hub. The ubuntu:latest tag points to the "latest LTS".
  2. Need to update Ubuntu first to install Ubuntu packages. See this SO answer.
  3. Travis CI can deploy to any repository, but need personal access token to do so. GitLab CI/CD can deploy to the repository where CI/CD runs without credentials.

Edit the following three files to include your code:

Add :adsense: yes to the articles that you want to put ads in. See content/articles/2016/02/16/c-hello-world%en.rst for example. Or use directive to include ads in articles. See raw file of content/articles/2016/02/16/c-hello-world%zh.rst for example.

UNLICENSE

All works, including posts and code, of Siong-Ui Te are released in public domain. Please see UNLICENSE.

References

[1]pelican-edit-url inspires the Edit on Github link.
[2]
[3]
[4]
[5]

About

pelican template website for generating my blog

https://siongui.github.io/pelican-template/

License:The Unlicense


Languages

Language:HTML 31.5%Language:Python 29.9%Language:SCSS 29.4%Language:Makefile 8.7%Language:JavaScript 0.3%Language:C 0.3%