Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wowchemy/starter-academic.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Cushen <gcushen@users.noreply.github.com>2020-12-13 03:55:03 +0300
committerGeorge Cushen <gcushen@users.noreply.github.com>2020-12-13 03:55:03 +0300
commit65635bbff9b59c9ef79a6f669fef5ffdefdaa767 (patch)
treeca5f7cd0fe06d21a4494c03b96388d779e3cc5b4 /content
parentd0a7f557d913b099d0c8dc8601e3bb8349e3a9df (diff)
refactor: convert accomplishments.md to YAML
Diffstat (limited to 'content')
-rw-r--r--content/home/accomplishments.md89
1 files changed, 44 insertions, 45 deletions
diff --git a/content/home/accomplishments.md b/content/home/accomplishments.md
index e2fd9a21..a76e0a0f 100644
--- a/content/home/accomplishments.md
+++ b/content/home/accomplishments.md
@@ -1,51 +1,50 @@
-+++
-# Accomplishments widget.
-widget = "accomplishments" # See https://sourcethemes.com/academic/docs/page-builder/
-headless = true # This file represents a page section.
-active = true # Activate this widget? true/false
-weight = 50 # Order that this section will appear.
+---
+# An instance of the Accomplishments widget.
+# Documentation: https://sourcethemes.com/academic/docs/page-builder/
+widget: accomplishments
-title = "Accomplish&shy;ments"
-subtitle = ""
+# This file represents a page section.
+headless: true
+
+# Order that this section appears on the page.
+weight: 50
+
+# Note: `&shy;` is used to add a 'soft' hyphen in a long heading.
+title: 'Accomplish&shy;ments'
+subtitle:
# Date format
-# Refer to https://sourcethemes.com/academic/docs/customization/#date-format
-date_format = "Jan 2006"
+# Refer to https://wowchemy.com/docs/customization/#date-format
+date_format: Jan 2006
# Accomplishments.
-# Add/remove as many `[[item]]` blocks below as you like.
-# `title`, `organization` and `date_start` are the required parameters.
+# Add/remove as many `item` blocks below as you like.
+# `title`, `organization`, and `date_start` are the required parameters.
# Leave other parameters empty if not required.
-# Begin/end multi-line descriptions with 3 quotes `"""`.
-
-[[item]]
- organization = "Coursera"
- organization_url = "https://www.coursera.org"
- title = "Neural Networks and Deep Learning"
- url = ""
- certificate_url = "https://www.coursera.org"
- date_start = "2018-10-01"
- date_end = ""
- description = ""
-
-[[item]]
- organization = "edX"
- organization_url = "https://www.edx.org"
- title = "Blockchain Fundamentals"
- url = "https://www.edx.org/professional-certificate/uc-berkeleyx-blockchain-fundamentals"
- certificate_url = "https://www.edx.org"
- date_start = "2018-03-01"
- date_end = ""
- description = "Formulated informed blockchain models, hypotheses, and use cases."
-
-[[item]]
- organization = "DataCamp"
- organization_url = "https://www.datacamp.com"
- title = "Object-Oriented Programming in R: S3 and R6 Course"
- url = ""
- certificate_url = "https://www.datacamp.com"
- date_start = "2017-07-01"
- date_end = "2017-12-21"
- description = ""
-
-+++
+# Begin multi-line descriptions with YAML's `|2-` multi-line prefix.
+item:
+- certificate_url: https://www.coursera.org
+ date_end: ""
+ date_start: "2018-10-01"
+ description: ""
+ organization: Coursera
+ organization_url: https://www.coursera.org
+ title: Neural Networks and Deep Learning
+ url: ""
+- certificate_url: https://www.edx.org
+ date_end: ""
+ date_start: "2018-03-01"
+ description: Formulated informed blockchain models, hypotheses, and use cases.
+ organization: edX
+ organization_url: https://www.edx.org
+ title: Blockchain Fundamentals
+ url: https://www.edx.org/professional-certificate/uc-berkeleyx-blockchain-fundamentals
+- certificate_url: https://www.datacamp.com
+ date_end: "2017-12-21"
+ date_start: "2017-07-01"
+ description: ""
+ organization: DataCamp
+ organization_url: https://www.datacamp.com
+ title: 'Object-Oriented Programming in R: S3 and R6 Course'
+ url: ""
+---