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:27:58 +0300
committerGeorge Cushen <gcushen@users.noreply.github.com>2020-12-13 03:27:58 +0300
commitefe3c21f7365a513923deaaa9a175170eb67cd94 (patch)
treef36d32dd8a4b2838a3e34f3ce6ce4d696d7818d9 /content
parent4cd48f81c6adc4caa8582c25adcb108c04143d8b (diff)
refactor: convert projects.md to YAML
Also switch default view from (Masonry) Card to Compact for consistency with other widget views.
Diffstat (limited to 'content')
-rw-r--r--content/home/projects.md97
1 files changed, 34 insertions, 63 deletions
diff --git a/content/home/projects.md b/content/home/projects.md
index 04aaf63a..f4ed23d7 100644
--- a/content/home/projects.md
+++ b/content/home/projects.md
@@ -1,77 +1,48 @@
-+++
-# A Projects section created with the Portfolio widget.
-widget = "portfolio" # See https://sourcethemes.com/academic/docs/page-builder/
-headless = true # This file represents a page section.
-active = true # Activate this widget? true/false
-weight = 65 # Order that this section will appear.
+---
+# An instance of the Portfolio widget.
+# Documentation: https://wowchemy.com/docs/page-builder/
+widget: portfolio
-title = "Projects"
-subtitle = ""
+# This file represents a page section.
+headless: true
-[content]
+# Order that this section appears on the page.
+weight: 65
+
+title: Projects
+subtitle: ''
+
+content:
# Page type to display. E.g. project.
- page_type = "project"
-
+ page_type: project
+
+ # Default filter index (e.g. 0 corresponds to the first `filter_button` instance below).
+ filter_default: 0
+
# Filter toolbar (optional).
- # Add or remove as many filters (`[[content.filter_button]]` instances) as you like.
+ # Add or remove as many filters (`filter_button` instances) as you like.
# To show all items, set `tag` to "*".
# To filter by a specific tag, set `tag` to an existing tag name.
- # To remove toolbar, delete/comment all instances of `[[content.filter_button]]` below.
-
- # Default filter index (e.g. 0 corresponds to the first `[[filter_button]]` instance below).
- filter_default = 0
-
- # [[content.filter_button]]
- # name = "All"
- # tag = "*"
-
- # [[content.filter_button]]
- # name = "Deep Learning"
- # tag = "Deep Learning"
-
- # [[content.filter_button]]
- # name = "Other"
- # tag = "Demo"
-
-[design]
- # Choose how many columns the section has. Valid values: 1 or 2.
- columns = "2"
+ # To remove the toolbar, delete the entire `filter_button` block.
+ filter_button:
+ - name: All
+ tag: '*'
+ - name: Deep Learning
+ tag: Deep Learning
+ - name: Other
+ tag: Demo
+
+design:
+ # Choose how many columns the section has. Valid values: '1' or '2'.
+ columns: '2'
# Toggle between the various page layout types.
# 1 = List
# 2 = Compact
# 3 = Card
# 5 = Showcase
- view = 3
+ view: 2
# For Showcase view, flip alternate rows?
- flip_alt_rows = false
-
-[design.background]
- # Apply a background color, gradient, or image.
- # Uncomment (by removing `#`) an option to apply it.
- # Choose a light or dark text color by setting `text_color_light`.
- # Any HTML color name or Hex value is valid.
-
- # Background color.
- # color = "navy"
-
- # Background gradient.
- # gradient_start = "DeepSkyBlue"
- # gradient_end = "SkyBlue"
-
- # Background image.
- # image = "background.jpg" # Name of image in `static/media/`.
- # image_darken = 0.6 # Darken the image? Range 0-1 where 0 is transparent and 1 is opaque.
-
- # Text color (true=light or false=dark).
- # text_color_light = true
-
-[advanced]
- # Custom CSS.
- css_style = ""
-
- # CSS class.
- css_class = ""
-+++
-
+ flip_alt_rows: false
+---