refactor: convert experience.md to YAML
This commit is contained in:
parent
7510d21c08
commit
d0a7f557d9
2 changed files with 63 additions and 63 deletions
|
@ -1,44 +1,45 @@
|
||||||
+++
|
---
|
||||||
# Experience widget.
|
# An instance of the Experience widget.
|
||||||
widget = "experience" # See https://sourcethemes.com/academic/docs/page-builder/
|
# Documentation: https://wowchemy.com/docs/page-builder/
|
||||||
headless = true # This file represents a page section.
|
widget: experience
|
||||||
active = true # Activate this widget? true/false
|
|
||||||
weight = 40 # Order that this section will appear.
|
|
||||||
|
|
||||||
title = "Experience"
|
# This file represents a page section.
|
||||||
subtitle = ""
|
headless: true
|
||||||
|
|
||||||
|
# Order that this section appears on the page.
|
||||||
|
weight: 40
|
||||||
|
|
||||||
|
title: Experience
|
||||||
|
subtitle:
|
||||||
|
|
||||||
# Date format for experience
|
# Date format for experience
|
||||||
# Refer to https://sourcethemes.com/academic/docs/customization/#date-format
|
# Refer to https://wowchemy.com/docs/customization/#date-format
|
||||||
date_format = "Jan 2006"
|
date_format: Jan 2006
|
||||||
|
|
||||||
# Experiences.
|
# Experiences.
|
||||||
# Add/remove as many `[[experience]]` blocks below as you like.
|
# Add/remove as many `experience` items below as you like.
|
||||||
# Required fields are `title`, `company`, and `date_start`.
|
# Required fields are `title`, `company`, and `date_start`.
|
||||||
# Leave `date_end` empty if it's your current employer.
|
# Leave `date_end` empty if it's your current employer.
|
||||||
# Begin/end multi-line descriptions with 3 quotes `"""`.
|
# Begin multi-line descriptions with YAML's `|2-` multi-line prefix.
|
||||||
[[experience]]
|
experience:
|
||||||
title = "CEO"
|
- title: CEO
|
||||||
company = "GenCoin"
|
company: GenCoin
|
||||||
company_url = ""
|
company_url: ''
|
||||||
location = "California"
|
location: California
|
||||||
date_start = "2017-01-01"
|
date_start: '2017-01-01'
|
||||||
date_end = ""
|
date_end: ''
|
||||||
description = """
|
description: |2-
|
||||||
Responsibilities include:
|
Responsibilities include:
|
||||||
|
|
||||||
* Analysing
|
* Analysing
|
||||||
* Modelling
|
* Modelling
|
||||||
* Deploying
|
* Deploying
|
||||||
"""
|
|
||||||
|
|
||||||
[[experience]]
|
- title: Professor
|
||||||
title = "Professor"
|
company: University X
|
||||||
company = "University X"
|
company_url: ''
|
||||||
company_url = ""
|
location: California
|
||||||
location = "California"
|
date_start: '2016-01-01'
|
||||||
date_start = "2016-01-01"
|
date_end: '2016-12-31'
|
||||||
date_end = "2016-12-31"
|
description: Taught electronic engineering and researched semiconductor physics.
|
||||||
description = """Taught electronic engineering and researched semiconductor physics."""
|
---
|
||||||
|
|
||||||
+++
|
|
||||||
|
|
|
@ -1,11 +1,8 @@
|
||||||
---
|
---
|
||||||
# An instance of the Experience widget.
|
# An instance of the Experience widget.
|
||||||
# Documentation: https://sourcethemes.com/academic/docs/page-builder/
|
# Documentation: https://wowchemy.com/docs/page-builder/
|
||||||
widget: experience
|
widget: experience
|
||||||
|
|
||||||
# Activate this widget? true/false
|
|
||||||
active: true
|
|
||||||
|
|
||||||
# This file represents a page section.
|
# This file represents a page section.
|
||||||
headless: true
|
headless: true
|
||||||
|
|
||||||
|
@ -15,32 +12,34 @@ weight: 40
|
||||||
title: Experience
|
title: Experience
|
||||||
subtitle:
|
subtitle:
|
||||||
|
|
||||||
# Date format
|
# Date format for experience
|
||||||
# Refer to https://sourcethemes.com/academic/docs/customization/#date-format
|
# Refer to https://wowchemy.com/docs/customization/#date-format
|
||||||
date_format: Jan 2006
|
date_format: Jan 2006
|
||||||
|
|
||||||
# Experiences.
|
# Experiences.
|
||||||
# Add/remove as many `experience` blocks below as you like.
|
# Add/remove as many `experience` items below as you like.
|
||||||
# Required fields are `title`, `company`, and `date_start`.
|
# Required fields are `title`, `company`, and `date_start`.
|
||||||
# Leave `date_end` empty if it's your current employer.
|
# Leave `date_end` empty if it's your current employer.
|
||||||
# You can begin a multiline `description` using YAML's `|-`.
|
# Begin multi-line descriptions with YAML's `|2-` multi-line prefix.
|
||||||
experience:
|
experience:
|
||||||
- company: GenCoin
|
- title: CEO
|
||||||
company_url: ""
|
company: GenCoin
|
||||||
date_end: ""
|
company_url: ''
|
||||||
date_start: "2017-01-01"
|
location: California
|
||||||
description: |-
|
date_start: '2017-01-01'
|
||||||
|
date_end: ''
|
||||||
|
description: |2-
|
||||||
Responsibilities include:
|
Responsibilities include:
|
||||||
|
|
||||||
* Analysing
|
* Analysing
|
||||||
* Modelling
|
* Modelling
|
||||||
* Deploying
|
* Deploying
|
||||||
|
|
||||||
|
- title: Professor
|
||||||
|
company: University X
|
||||||
|
company_url: ''
|
||||||
location: California
|
location: California
|
||||||
title: CEO
|
date_start: '2016-01-01'
|
||||||
- company: University X
|
date_end: '2016-12-31'
|
||||||
company_url: ""
|
|
||||||
date_end: "2016-12-31"
|
|
||||||
date_start: "2016-01-01"
|
|
||||||
description: Taught electronic engineering and researched semiconductor physics.
|
description: Taught electronic engineering and researched semiconductor physics.
|
||||||
location: California
|
|
||||||
title: Professor
|
|
||||||
---
|
---
|
||||||
|
|
Loading…
Reference in a new issue