hugo-theme-almeida/README.md

53 lines
1.5 KiB
Markdown
Raw Normal View History

2020-08-16 20:19:07 +00:00
# Almeida CV Theme
2020-08-16 19:16:37 +00:00
Theme to build a customizeable printable HTML/CSS CV.
2020-08-16 19:32:30 +00:00
![Screenshot](images/screenshot-full.png)
2020-08-16 19:22:53 +00:00
2020-08-16 19:16:37 +00:00
# Features
- Online CV with minor responsiveness
- Printable as A4 PDF
2020-08-17 07:39:41 +00:00
- HTML5 + CSS3
- Customizeable colors
## Print your PDF CV
When printing the page in the browser, you'll get a formatted A4 page that can be used as your PDF resume.
If your page holds more than 1 A4 page, the content will be divided into the given amount of pages.
For better formatting, you can set the number of pages in the `config.toml` file.
2020-08-16 19:16:37 +00:00
# Download
2020-08-16 20:19:07 +00:00
Clone the repo: `git clone https://github.com/ineesalmeida/almeida-cv`
2020-08-16 19:16:37 +00:00
# Installation
## Install Hugo
2020-08-16 20:19:07 +00:00
To use almeida-cv theme you need to install Hugo by following https://gohugo.io/getting-started/installing/.
2020-08-16 19:16:37 +00:00
## Create your personal website and run
```
hugo new site <your website's name>
cd <your website's name>/themes/
```
2020-08-17 07:39:41 +00:00
Clone the theme (`git clone https://github.com/ineesalmeida/almeida-cv`) into your themes folder.
Replace the files in your root's directory with the ones on `themes/almeida-cv/exampleSite`.
2020-08-16 19:16:37 +00:00
```
hugo server -D
```
2020-08-17 07:39:41 +00:00
The theme is alive on http://localhost:1313/.
2020-08-16 19:16:37 +00:00
## Customization
2020-08-17 07:39:41 +00:00
You can change the theme colors and number of pages in the `config.toml` file.
2020-08-16 19:16:37 +00:00
Your professional data should be added in the `data/content.yaml`.
2020-08-17 07:39:41 +00:00
2020-08-16 19:16:37 +00:00
# Building
To generate your site in the public folder, execute the following:
```
hugo
```
within the root of your project.
# Contributing
Post bugs and contributions to the issue tracker. Or make a pull request.