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
|
2021-06-26 17:18:00 +00:00
|
|
|
When printing the page in the browser, you'll get a formatted A4 page that can be used as your PDF resume.
|
2020-08-17 07:39:41 +00:00
|
|
|
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-12-29 13:36:32 +00:00
|
|
|
If badges and other elements with background don't render correctly, remember to toggle the "Background Graphics" option in the print dialog.
|
2020-08-16 19:16:37 +00:00
|
|
|
|
2021-06-27 12:10:29 +00:00
|
|
|
# Usage
|
|
|
|
## Install Hugo (extended)
|
|
|
|
To use `almeida-cv` theme you need to install Hugo Extended by following https://gohugo.io/getting-started/installing/.
|
2020-08-16 19:16:37 +00:00
|
|
|
|
2021-06-27 12:10:29 +00:00
|
|
|
## Create your personal website
|
2020-08-16 19:16:37 +00:00
|
|
|
```
|
|
|
|
hugo new site <your website's name>
|
2021-06-27 12:10:29 +00:00
|
|
|
cd <your website's name>
|
|
|
|
git init
|
|
|
|
git submodule add https://github.com/ineesalmeida/almeida-cv.git themes/almeida-cv
|
2020-08-16 19:16:37 +00:00
|
|
|
```
|
2021-06-27 12:10:29 +00:00
|
|
|
Replace the files in your site root's directory with the ones in `themes/almeida-cv/exampleSite`.
|
|
|
|
|
|
|
|
## Start Hugo in development mode
|
2020-08-16 19:16:37 +00:00
|
|
|
```
|
|
|
|
hugo server -D
|
|
|
|
```
|
2021-06-27 12:10:29 +00:00
|
|
|
Your site is now available at http://localhost:1313/.
|
2020-08-16 19:16:37 +00:00
|
|
|
|
|
|
|
## Customization
|
2021-06-26 17:18:00 +00:00
|
|
|
Your professional data should be added in the `data/content.yaml` file. You can change the theme colors and number of
|
|
|
|
pages in the `config.toml` file. For working example, see `exampleSite` directory.
|
2020-08-16 19:16:37 +00:00
|
|
|
|
2021-06-26 17:18:00 +00:00
|
|
|
For more advanced customization, in your site root directory create `assets/scss/_custom.scss` file where you can
|
|
|
|
overwrite theme SCSS as per your liking.
|
2020-08-17 07:39:41 +00:00
|
|
|
|
2021-06-27 12:10:29 +00:00
|
|
|
## Building
|
|
|
|
To generate static files of your website, execute the following:
|
2020-08-16 19:16:37 +00:00
|
|
|
```
|
2021-06-27 12:10:29 +00:00
|
|
|
hugo --minify
|
2020-08-16 19:16:37 +00:00
|
|
|
```
|
|
|
|
within the root of your project.
|
|
|
|
|
2021-06-26 17:18:00 +00:00
|
|
|
# Contributing
|
2020-08-16 19:16:37 +00:00
|
|
|
Post bugs and contributions to the issue tracker. Or make a pull request.
|