www.alejandrolopezparra.es source code
Alejandro Lopez Parra's personal website is based on Hugo, a popular open-source static site generators, and the Academic theme for Hugo, a framework to help you create a beautiful website quickly.
A lot about them can be learnt by reading the Hugo doc and the Academic theme doc.
You can easily create your own website using mine:
- Download and install Hugo
- Download and install Git
- Clone my website source code from GitHub:
$# git clone https://github.com/alejandrolopezparra/hugo.git your_website_name
- Clone official Academic theme from GitHub:
$# cd your_website_name $# git submodule update --init themes/academic/
- Create your own posts
- Remove my .md files (except _index.md) and add yours in content/posts/ folder
- Create your own talks
- Remove my .md files (except _index.md) and add yours in content/talks/ folder
- Customize your new website
- Modify config.toml file by tuning, at least, the following keys:
- Global attributes
baseurl = ""
title = ""
copyright = ""
googleAnalytics = ""
- [params] attributes
role = ""
organizations = ""
avatar = ""
- [[params.social]] attributes
- Global attributes
- Enable|Disable widgets in content/home/ folder by setting attribute
active = true|false
- Modify config.toml file by tuning, at least, the following keys:
- Build your website into the public folder
$# hugo
- Upload your own static website, which is into the public folder, to wherever you want
- GitHub Pages guide (in Spanish)
- Amazon S3 guide (in Spanish)