Skip to content

Commit 87a3e36

Browse files
Incorporating feedback from Grant
1 parent e07c692 commit 87a3e36

File tree

7 files changed

+16
-14
lines changed

7 files changed

+16
-14
lines changed
5.74 KB
Loading

data/en/sections/featured-posts.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
section:
33
name: Featured Posts # Title of section (default: "")
44
id: featured-posts # url id/slug of section *Required*
5-
enable: true # Boolean to determine if this section is enabled (default: false)
5+
enable: false # Boolean to determine if this section is enabled (default: false)
66
weight: 10 # Order to display section in (default: alphabetical followed by weight)
77
showOnNavbar: false # Boolean to determine if a link should be shown for this section on the navbar
88
hideTitle: true # Can optionally hide the title in sections (default: false)

data/en/sections/features.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,9 @@ features:
4848
- name: Open-Source
4949
# logo: /images/sections/skills/c++.png
5050
summary: "Developed as an open-source project with a great community of developers and users behind."
51+
# categories: ["basic", "language"]
52+
53+
- name: Rocking documentation
54+
logo: /images/sections/skills/docs.png
55+
summary: "Comprehensive documentation to help you get started and understand the internals."
5156
# categories: ["basic", "language"]

data/en/sections/recent-posts.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ section:
55
enable: true # Boolean to determine if this section is enabled (default: false)
66
weight: 20 # Order to display section in (default: alphabetical followed by weight)
77
showOnNavbar: false # Boolean to determine if a link should be shown for this section on the navbar
8-
hideTitle: true # Can optionally hide the title in sections (default: false)
8+
hideTitle: false # Can optionally hide the title in sections (default: false)
99
numShow: 4 # Can optionally increase the number of posts to display (default: 3)
1010
showMoreButton: false #Can optionally show 'More Posts' button (default: false)

data/en/sections/team.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
section:
22
name: Project Team
33
id: team
4-
enable: true
4+
enable: false
55
weight: 6
66
showOnNavbar: true
77
hideTitle: false

layouts/partials/sections/intro.html

+8-11
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,8 @@
1313

1414
<div class="container-fluid intro" id="intro">
1515
<style>
16-
video {
17-
width: 45vw;
18-
/* 25% of the viewport width */
19-
height: 45vh;
20-
/* 25% of the viewport height */
16+
#screenshot {
17+
width: 80%;
2118
}
2219

2320
.left-half,
@@ -28,8 +25,9 @@
2825
}
2926

3027
.left-half {
31-
padding: 10%; /* Border of 20% on each side */
32-
box-sizing: border-box;
28+
/* Border of 20% on each side */
29+
padding: 10%;
30+
box-sizing: border-box;
3331
}
3432
</style>
3533
<span class="on-the-fly-behavior"></span>
@@ -44,10 +42,9 @@
4442
</span>
4543
</div>
4644
<div class="col-md-6 right-half d-flex justify-content-center align-items-center">
47-
<video controls class="video" autoplay loop>
48-
<source src="videos/screencast.webm" type="video/webm">
49-
Your browser does not support the video tag.
50-
</video>
45+
<picture id="screenshot">
46+
<img src="images/screenshot.png" alt="Screenshot">
47+
</picture>
5148
</div>
5249
{{ if $sections }}
5350
{{ range first 2 (where (sort $sections "section.weight") ".section.enable" true) }}

static/images/screenshot.png

301 KB
Loading

0 commit comments

Comments
 (0)