A minimal academic page for academics!
FOR THE DEMO, PLEASE SEE THE LINK BELOW
Avicenna
?To use Avicenna
, you need to follow three steps:
Avicenna
The following sections are based on the mentioned steps.
Avicenna
?There are 2 ways to install Avicenna
:
In this approach, all you need is to replace the my_cool_page
with your desired name in the following script:
wget https://raw.githubusercontent.com/hadisinaee/avicenna/master/setup_avicenna.sh && sh setup_avicenna.sh my_cool_page
Run the site:
hugo serve
Now, you should be able to see the site at http://localhost:1313
Avicenna
?config.toml
You can start the customization with the config.toml
file. It’s located a the root of your project. In this file, you can set your name, your website URL, googleAnalytics id, etc.
There is a folder named static
under the root of your site’s folder. Its structure is as follows:
profile.png
with your profile file. Please use the same name and extenstion, e.g. profile.png
. It doesn’t work if you use another name or extension.static
folder. I recommend you to use the name cv.pdf
for your CV file. Also, if you wanted to use another file name, you would need to change it in your introduction. See Introduction Section.All files and folders that you need to modify lies in the content
folder. The folder should look like this
Avicenna theme has three different sections: Introduction
, Publications
, and Projects
. Based on the previous figure, you might have an intuition where you should modify. However, there are some details that I have to provide.
Introduction
SectionIntroduction
section is where you put details about yourself, such as your name, profile, interests, etc. To modify the introduction section, you need to edit the content/about/_index.md
file.
Publications
SectionAll your publications are stored in content/publications
. To create a new publication:
hugo new publications/your-pub-name.md
If was successful, you would see a message similar to the following:
YOUR_PROJECT_PATH/content/publications/your-pub-name.md
To edit the file, go to content/publications
and then find your your-pub-name.md
file and change it.
All your projects are stored in content/projects
. To create a new project:
hugo new projects/your-project-name.md
If was successful, you would see a message similar to the following:
YOUR_PROJECT_PATH/content/projects/your-project-name.md
To edit the file, go to content/projects
and then find your your-project-name.md
file and change it.
Avicenna
?baseURL
in the config.toml
file. It should be the address you want to deploy Avicenna
on.hugo
in the root of your project. The result will be in the public
folder in the root of your project.public
folder and move it your host server.