Moving to the Pelican static site generator.
Decided that changing the blogging engine might make me write more. While I Quite liked Hugo, if I want to tinker Python seems much more appropriate than Go.
So Starting again with Pelican. Lets see how well I keep it up this time.
Theme Testing
And some playing around with the theme
- Bullet points
- More Bullet points
-
Even more pullet poitns
-
Enumeration
- More Enumeration
- And Even more numbers
Code
We can also test inline code
And more importantly
import time
def func(param):
"""
Comments for python
"""
print("This is a test")
time.sleep(5)
if __name__ == "__main__":
func(10)