A list of the most common functionalities in Jekyll (Liquid). You can use Jekyll with GitHub Pages, just make sure you are using the proper version.
Running a local server for testing purposes:
| #!/usr/bin/env python | |
| import subprocess | |
| import optparse | |
| import platform | |
| #-------------------------------------Globals-------------------------------------------------------- | |
| install = [] | |
| uninstall = ["sudo apt-get remove ruby* ruby*-dev rubygems"] | |
| PLATFORM = platform.system() | |
| ARCHITECTURE = platform.architecture()[0] |
| #!/usr/bin/env python | |
| import subprocess | |
| import optparse | |
| import platform | |
| #---------------------------------------Globals---------------------------------------------------- | |
| install = [] | |
| PLATFORM = platform.system() | |
| ARCHITECTURE = platform.architecture()[0] |
| #!/usr/bin/env python | |
| import subprocess | |
| import optparse | |
| import platform | |
| #--------------------------------------------Globals------------------------------------------------------------- | |
| install = [] | |
| uninstall = ["sudo apt-get purge openoffice*.* && sudo apt-get autoremove"] | |
| PLATFORM = platform.system() | |
| ARCHITECTURE = platform.architecture()[0] |
A list of the most common functionalities in Jekyll (Liquid). You can use Jekyll with GitHub Pages, just make sure you are using the proper version.
Running a local server for testing purposes: