resume-a4/README.md

57 lines
1.8 KiB
Markdown
Raw Normal View History

2020-09-01 00:03:58 +02:00
# Features
* Simple, easy to use, single or multi page, A4-sized Resume generator.
2020-09-01 00:03:58 +02:00
* Print friendly, just use your browser or save as PDF.
* Write your resume in yaml. All content stored in data files.
* Remove/Add sections from `config.toml`.
* Section names are configurable in `config.toml`. So, you can write in any language you want.
2020-09-01 00:03:58 +02:00
# How To Use
## Download
1. Create a hugo project.
2. Go to themes folder.
2020-09-01 00:03:58 +02:00
3. Clone this theme.
```
cd themes
git clone https://gitlab.com/mertbakir/resume-a4.git
```
or add ass a submodule
```
git submodule add https://gitlab.com/mertbakir/resume-a4.git themes/resume-a4
2020-09-01 00:03:58 +02:00
```
## Start
1. Copy `config.toml` from `exampleSite` to the root directory of your hugo project.
2. Open `config.toml` and add your relevant information.
3. Copy `data` folder from `exampleSite` to the root directory of your hugo project. All you need is that folder.
2020-09-01 00:03:58 +02:00
4. Create your resume in yaml files.
## Notes
* Add/Remove sections in `config.toml`
* Set avatar link in `config.toml`, keep your image under `static` folder if you want.
* You can change `style` of the `publications` feature in the config file.
I've created options for APA and IEEE standards.
You can add more standards to `section-publications.html` file in the `layouts\partials` folder if you are looking for something else.
2021-02-13 12:10:13 +01:00
* [Here is the blog post](https://mertbakir.gitlab.io/projects/resume-a4/) about this project.
2020-09-01 00:03:58 +02:00
# License
2020-09-18 12:10:27 +02:00
This project is open-sourced and licensed under the terms of the MIT license. I would be happy though, if you give attribution. <3
2021-02-13 12:10:13 +01:00
> _I'm open to suggestions and contributions._
2020-09-18 12:10:27 +02:00
# My Work Flow
1. Make changes.
2. Delete `resources` folder in main project.
2. Build your hugo site using the theme. `hugo server`
3. Copy `resources` folder from main project to theme folder `themes\resume-A4\resources`
4. `git commit` and `git push`.