resume-a4/README.md

73 lines
2.7 KiB
Markdown
Raw Permalink 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.
* Add/Remove sections order change section orders by editing `config.yaml`.
* Section names are configurable in `config.yaml`. So, you can write in any language you want.
[Here is a blog post](https://mertbakir.gitlab.io/projects/resume-a4/) about this project.
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 as 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.yaml` from `exampleSite` to the root directory of your hugo project.
2. Open `config.yaml` 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.
## Config File
* You can add/remove sections.
* Add multiple pages as many as you like. (_still, let's not forget the aim here. a resume should be precise. I don't think a recruiter will scroll down on it._)
* Order of the "features" are important in the config file.
### Custom CSS
Copy the ```\assets``` folder under the ```exampleSite``` directory if you like to make simple modifications.
### Avatar
2021-10-23 01:39:32 +02:00
Set avatar link in `config.yaml`, you may keep the image under `static` folder. You can set it as ```false``` if you don't want to add a picture.
### Publications
2020-09-01 00:03:58 +02:00
You can change `style` of the `publications` feature in the config file. There are options for APA and IEEE standards. Report me on gitlab or send a merge requests if standarts are erroneous. I'm no expert on citation standarts.
2020-09-01 00:03:58 +02:00
2021-10-23 01:39:32 +02:00
## Print | Save As PDF
There is a snippet in the ```exampleSite\assets\custom.scss``` file for printing the href attribute. It's not included as default. Because "save as pdf" is way more common usage than a hard copy. Also, I wouldn't prefer printing a long url on a hard copy.
If you don't like the result of "save as pdf" in Mozilla Firefox, try Chrome or a Chromium-based browser. Probably, because Firefox doesn't support [this](https://developer.mozilla.org/en-US/docs/Web/CSS/%40page/size).
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`.