Add Theme to the Pelican blog.
A list can be found at Pelican Themes.
As an introduction to the theme https://github.com/duilio/pelican-octopress-theme/archive/master.zip Download all themes from pelicanconf.py `THEME ='Place of the theme you want to use`` I should edit
I don't change the theme separately and it's troublesome to download all of them, so this time I will use Flex, which I personally like the design. Under the project directory
git clone https://github.com/alexandrevicenzi/Flex.git ~/themes/flex
そして、pelicanconf.py
THEME = './themes/flex'
To
The rest can be changed by editing pelicanconf.py in various ways.
.
.
.
# Blogroll
LINKS = (('Link', 'URL'),
('Link', 'URL'),)
# Social widget
SOCIAL = (('github', 'URL of Github'),
('linkedin', 'Linkedin URL'),
('google', 'google+URL'),
('instagram', 'instagram url'),
)
.
.
.
The icons that can be used are
Other than this, if it is in Font Awesome, it's OK But I have to add background to Flex's css. In my case, I didn't have an Instagram icon, so I added it.
Reference site Flex
Recommended Posts