Redesigned form [hugo resume](https://github.com/eddiewebb/hugo-resume).
## Features
+ This is basically a single-page website with auto-scrolling based on left-hand nav.
+ Dedicated project/publications pages allow more detail.
+ Includes a client-side search at '/search'.
+ Includes an `/admin` endpoint that can allow authorized users to use a WYSIWYG editor and commit files back to markdown, but with a Wordpress/CMS like experience.
## Quick Start
```bash
git clone git@github.com:alongwy/zola-resume.git
cd zola-resume
zola serve
# open http://127.0.0.1:1111/
```
## Installation
Just earlier we showed you how to run the theme directly. Now we start to install the theme in an existing site step by step.
### Step 1: Create a new zola site
```bash
zola init mysite
```
### Step 2: Install zola-resume
Download this theme to your themes directory:
```bash
cd mysite/themes
git clone git@github.com:alongwy/zola-resume.git
```
Or install as a submodule:
```bash
cd mysite
git init # if your project is a git repository already, ignore this command
The difference indicates your role as originator or colaborator.
### Publications
Similar to projects, create them under `publications`. Include any papers, speaking engagements, articles, etc.
### Blog / Posts
Similar to posts, create them under `blog`. Include any thoughts, musiings, etc.
**This template does not support a `posts` folder**
### Template params
Almost All personal information outside the above details is captured by extra in [`config.toml`](https://github.com/AlongWY/zola-resume/blob/main/config.toml), or can be edited in the "Settings" collection if using CMS.
## CMS Editor with Netlify CMS
**Does not require deployment to Netlify!**
[Netlify CMS](https://www.netlifycms.org/) is an open source project that enables CMS like experience for static site generation tools like Hugo. This theme includes a fully working integration and guide in [static/admin](https://github.com/AlongWY/zola-resume/tree/main/static/admin)
## Credits
This project ports the Hugo Resume theme by Feng Yunlong to support zola.