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:
Diffstat (limited to 'exampleSite/content/home/slider.md')
-rw-r--r--exampleSite/content/home/slider.md54
1 files changed, 54 insertions, 0 deletions
diff --git a/exampleSite/content/home/slider.md b/exampleSite/content/home/slider.md
new file mode 100644
index 00000000..32f9166f
--- /dev/null
+++ b/exampleSite/content/home/slider.md
@@ -0,0 +1,54 @@
++++
+# Slider widget.
+widget = "slider" # See https://sourcethemes.com/academic/docs/page-builder/
+headless = true # This file represents a page section.
+active = false # Activate this widget? true/false
+weight = 1 # Order that this section will appear.
+
+# Slide interval.
+# Use `false` to disable animation or enter a time in ms, e.g. `5000` (5s).
+interval = false
+
+# Slide height (optional).
+# E.g. `500px` for 500 pixels or `calc(100vh - 70px)` for full screen.
+height = ""
+
+# Slides.
+# Duplicate an `[[item]]` block to add more slides.
+[[item]]
+ title = "Hello"
+ content = "I am center aligned :smile:"
+ align = "center" # Choose `center`, `left`, or `right`.
+
+ # Overlay a color or image (optional).
+ # Deactivate an option by commenting out the line, prefixing it with `#`.
+ overlay_color = "#666" # An HTML color value.
+ overlay_img = "headers/bubbles-wide.jpg" # Image path relative to your `static/media/` folder.
+ overlay_filter = 0.5 # Darken the image. Value in range 0-1.
+
+ # Call to action button (optional).
+ # Activate the button by specifying a URL and button label below.
+ # Deactivate by commenting out parameters, prefixing lines with `#`.
+ cta_label = "Get Academic"
+ cta_url = "https://sourcethemes.com/academic/"
+ cta_icon_pack = "fas"
+ cta_icon = "graduation-cap"
+
+[[item]]
+ title = "Left"
+ content = "I am left aligned :smile:"
+ align = "left"
+
+ overlay_color = "#555" # An HTML color value.
+ overlay_img = "" # Image path relative to your `static/media/` folder.
+ overlay_filter = 0.5 # Darken the image. Value in range 0-1.
+
+[[item]]
+ title = "Right"
+ content = "I am right aligned :smile:"
+ align = "right"
+
+ overlay_color = "#333" # An HTML color value.
+ overlay_img = "" # Image path relative to your `static/media/` folder.
+ overlay_filter = 0.5 # Darken the image. Value in range 0-1.
++++