Skip to content

Commit f37e76f

Browse files
committed
Updating docs and especially Ileana theme
1 parent 54be1d9 commit f37e76f

File tree

74 files changed

+578
-67
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+578
-67
lines changed

0app/includes/mixins/image.pug

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ mixin image( url, caption, attr )
1919
- note = config.imageNote
2020
if config.imageNotes && config.imageNotes.hasOwnProperty( urlOriginal )
2121
- note = config.imageNotes[ urlOriginal ]
22+
if 'core' === note
23+
- note = config.imageNote
2224

2325
figure&attributes( attributes )
2426
a( href=url title="Click to open large image" )

angelica/index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

bjork/index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

cindy/index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

deborah/index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

eimear/index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

forstron/index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

francesca/index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

icelander/index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

ileana/assets/css/style.css

Lines changed: 15 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
:root {
22
/* Theme color palette: */
3-
--color_base: #fffdfd;
4-
--color_contrast: #3f3d3d;
5-
--color_contrast_alt: #0f0d0d;
6-
--color_primary: #e51c06;
7-
--color_primary_mixed: #fce1de;
8-
--color_secondary: #fff8d0;
9-
--color_secondary_mixed: #fffbec;
3+
--color_base: #fffae6;
4+
--color_contrast: #3f3a36;
5+
--color_contrast_alt: #0f0a06;
6+
--color_primary: #30533f;
7+
--color_primary_mixed: #e5e5d1;
8+
--color_secondary: #437358;
9+
--color_secondary_mixed: #b7c6b0;
1010
--color_black: #000000;
1111
--color_white: #ffffff;
1212
--color_gradient_primary: var(--color_secondary);
@@ -19,15 +19,15 @@
1919
--color_button_text: var(--color_white);
2020
--color_header_background: var(--color_base);
2121
--color_header_text: var(--color_contrast_alt);
22-
--color_nav_background: var(--color_secondary);
22+
--color_nav_background: var(--color_secondary_mixed);
2323
--color_nav_text: var(--color_black);
2424
--color_nav_background_active: var(--color_primary);
2525
--color_nav_text_active: var(--color_white);
2626
--color_nav_background_hover: var(--color_primary_mixed);
27-
--color_nav_text_hover: var(--color_nav_text);
28-
--color_nav_border: rgba(0, 0, 0, var(--border_opacity));
29-
--color_nav_prefix_content: var(--color_primary);
30-
--color_nav_prefix_customizing: #0660e5;
27+
--color_nav_text_hover: var(--color_black);
28+
--color_nav_border: rgba(255, 255, 255, var(--border_opacity));
29+
--color_nav_prefix_content: #9e5b61;
30+
--color_nav_prefix_customizing: #9a5b9e;
3131
--color_intro_background: var(--color_primary);
3232
--color_intro_text: var(--color_white);
3333
--color_content_background: var(--color_base);
@@ -41,18 +41,8 @@
4141
}
4242

4343
.intro {
44-
isolation: isolate;
44+
background-image: url("assets/images/p-i.webp");
4545
}
46-
.intro::before {
47-
content: "";
48-
position: absolute;
49-
inset: 0;
50-
background: url("assets/images/pexels-amina-filkins-5410071.webp");
51-
background-position: 50% 50%;
52-
background-size: cover;
53-
opacity: 0.1;
54-
z-index: -1;
55-
}
56-
.intro .stars .svg-icon {
57-
fill: var(--color_secondary);
46+
.intro .svg-icon {
47+
color: var(--color_secondary_mixed);
5848
}

ileana/assets/images/blog-layout.jpg

51.6 KB
-632 Bytes

ileana/assets/images/megamenu.jpg

-15.9 KB

ileana/assets/images/mobile-menu.png

-36.5 KB

ileana/assets/images/p-i.webp

2.38 KB
Binary file not shown.

ileana/assets/images/p.webp

2.86 KB
Binary file not shown.

ileana/assets/sass/style.scss

Lines changed: 23 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
1+
$color_base : #fffae6;
2+
$color_base_alt : #efead6;
3+
$color_contrast : #3f3a36;
4+
$color_contrast_alt : #0f0a06;
5+
$color_primary : #30533f;
6+
$color_secondary : #437358;
7+
18
:root {
29

310
/* Theme color palette: */
4-
--color_base: #fffdfd;
5-
--color_contrast: #3f3d3d;
6-
--color_contrast_alt: #0f0d0d;
7-
--color_primary: #e51c06;
8-
--color_primary_mixed: #fce1de;
9-
--color_secondary: #fff8d0;
10-
--color_secondary_mixed: #fffbec;
11+
--color_base: #{ $color_base };
12+
--color_contrast: #{ $color_contrast };
13+
--color_contrast_alt: #{ $color_contrast_alt };
14+
--color_primary: #{ $color_primary };
15+
--color_primary_mixed: #{ mix( $color_primary, $color_base, 12.50% ) };
16+
--color_secondary: #{ $color_secondary };
17+
--color_secondary_mixed: #{ mix( $color_secondary, $color_base, 38.20% ) };
1118
--color_black: #000000;
1219
--color_white: #ffffff;
1320

@@ -25,15 +32,16 @@
2532
--color_header_background: var(--color_base);
2633
--color_header_text: var(--color_contrast_alt);
2734

28-
--color_nav_background: var(--color_secondary);
35+
--color_nav_background: var(--color_secondary_mixed);
2936
--color_nav_text: var(--color_black);
3037
--color_nav_background_active: var(--color_primary);
3138
--color_nav_text_active: var(--color_white);
3239
--color_nav_background_hover: var(--color_primary_mixed);
33-
--color_nav_text_hover: var(--color_nav_text);
34-
--color_nav_border: #{ rgba( #000, var(--border_opacity) ) };
35-
--color_nav_prefix_content: var(--color_primary);
36-
--color_nav_prefix_customizing: #0660e5; // Split complementary, https://www.colorhexa.com/e51c06
40+
--color_nav_text_hover: var(--color_black);
41+
--color_nav_border: #{ rgba( #fff, var(--border_opacity) ) };
42+
// Shades of split complementary, https://www.colorhexa.com/30533f (from primary color)
43+
--color_nav_prefix_content: #9e5b61;
44+
--color_nav_prefix_customizing: #9a5b9e;
3745

3846
--color_intro_background: var(--color_primary);
3947
--color_intro_text: var(--color_white);
@@ -51,20 +59,9 @@
5159
}
5260

5361
.intro {
54-
isolation: isolate;
55-
56-
&::before {
57-
content: '';
58-
position: absolute;
59-
inset: 0;
60-
background: url('assets/images/pexels-amina-filkins-5410071.webp');
61-
background-position: 50% 50%;
62-
background-size: cover;
63-
opacity: .1;
64-
z-index: -1;
65-
}
62+
background-image: url('assets/images/p-i.webp');
6663

67-
.stars .svg-icon {
68-
fill: var(--color_secondary);
64+
.svg-icon {
65+
color: var(--color_secondary_mixed);
6966
}
7067
}

ileana/includes/_custom-content.pug

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ block append menu/fse
2222

2323
block prepend customizer/fse/theme-options
2424
include custom-background.pug
25-
include custom-header.pug
2625

2726
block append site-editor/styles/colors/bottom
2827
include colors.pug
@@ -33,7 +32,6 @@ block append plugins/recommended/woocommerce
3332
block faq/answer/page-builder
3433
include faq-answer-page-builder.pug
3534
block append faq/questions/list
36-
include faq-question-custom-header.pug
3735
include faq-question-mobile-header.pug
3836
include faq-question-sticky-header.pug
3937
include faq-question-progress-bar.pug
@@ -42,7 +40,6 @@ block append faq/questions/list
4240
include faq-question-wc-layout-product.pug
4341
include faq-question-wc-shop-page.pug
4442
block append faq/answers/list
45-
include faq-answer-custom-header.pug
4643
include faq-answer-mobile-header.pug
4744
include faq-answer-sticky-header.pug
4845
include faq-answer-progress-bar.pug

ileana/includes/blog-layout.pug

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
ul
55
li List of posts with sidebar. (This is default layout.) → <em><a href="#{config.url.demo}blog/">Preview</a></em>
66
li Posts in 2 columns with no sidebar. → <em><a href="#{config.url.demo}blog/?layout=columns">Preview</a></em>
7+
li Alternative posts layout in 3 columns. → <em><a href="#{config.url.demo}blog/?layout=columns-alt">Preview</a></em>
78

89
+image( 'blog-layout.jpg', 'Preview of blog layouts (posts list with sidebar, posts list in 2 columns)' )
910

ileana/index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

ileana/index.pug

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,11 @@
8282
'https://easycaptures.com/fs/uploaded/1625/7456394390.jpg' : 'megamenu.jpg',
8383
},
8484
imageNote : 'core',
85-
imageNotes : {}
85+
imageNotes : {
86+
'faq-spacing.jpg' : 'core',
87+
'mobile-header.jpg' : 'core',
88+
'sticky-header.jpg' : 'core',
89+
}
8690
};
8791
8892
//-

michelle/index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

polyclinic/index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

qtron/index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

zooey/assets/css/style.css

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
:root {
2+
/* Theme color palette: */
3+
--color_base: $color_base;
4+
--color_contrast: $color_contrast;
5+
--color_contrast_alt: $color_contrast_alt;
6+
--color_primary: $color_primary;
7+
--color_primary_mixed: mix( $color_primary, $color_base, 12.50% );
8+
--color_secondary: $color_secondary;
9+
--color_secondary_mixed: mix( $color_secondary, $color_base, 38.20% );
10+
--color_black: #000000;
11+
--color_white: #ffffff;
12+
--color_gradient_primary: var(--color_secondary);
13+
--color_gradient_radial_primary: var(--color_secondary);
14+
--color_gradient_radial_secondary: transparent;
15+
/* Documentation colors: */
16+
--color_accent: var(--color_primary);
17+
--color_mark: var(--color_primary_mixed);
18+
--color_button_background: var(--color_primary);
19+
--color_button_text: var(--color_white);
20+
--color_header_background: var(--color_base);
21+
--color_header_text: var(--color_contrast_alt);
22+
--color_nav_background: var(--color_secondary);
23+
--color_nav_text: var(--color_black);
24+
--color_nav_background_active: var(--color_primary);
25+
--color_nav_text_active: var(--color_white);
26+
--color_nav_background_hover: var(--color_primary_mixed);
27+
--color_nav_text_hover: var(--color_nav_text);
28+
--color_nav_border: rgba(0, 0, 0, var(--border_opacity));
29+
--color_nav_prefix_content: var(--color_primary);
30+
--color_nav_prefix_customizing: #0660e5;
31+
--color_intro_background: var(--color_primary);
32+
--color_intro_text: var(--color_white);
33+
--color_content_background: var(--color_base);
34+
--color_content_text: var(--color_contrast);
35+
--color_content_headings: var(--color_contrast_alt);
36+
--color_content_border: rgba(63, 61, 61, var(--border_opacity));
37+
--color_heading_entry_background: var(--color_nav_background_active);
38+
--color_heading_entry_text: var(--color_nav_text_active);
39+
--color_footer_background: var(--color_primary);
40+
--color_footer_text: var(--color_white);
41+
}
42+
43+
.intro {
44+
isolation: isolate;
45+
}
46+
.intro::before {
47+
content: "";
48+
position: absolute;
49+
inset: 0;
50+
background: url("assets/images/pexels-amina-filkins-5410071.webp");
51+
background-position: 50% 50%;
52+
background-size: cover;
53+
opacity: 0.1;
54+
z-index: -1;
55+
}
56+
.intro .stars .svg-icon {
57+
fill: var(--color_secondary);
58+
}

zooey/assets/images/blog-layout.jpg

131 KB

zooey/assets/images/faq-spacing.jpg

95.5 KB
116 KB

zooey/assets/images/megamenu.jpg

46.7 KB

zooey/assets/images/menu-image-1.jpg

53.5 KB

zooey/assets/images/menu-image-2.jpg

65 KB

zooey/assets/images/mobile-header.jpg

71.9 KB

zooey/assets/images/mobile-menu.png

121 KB
35.6 KB
40.6 KB

zooey/assets/images/sticky-header.jpg

89.4 KB

zooey/assets/sass/style.scss

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
$color_base : #fffae6;
2+
$color_base_alt : #efead6;
3+
$color_contrast : #3f3a36;
4+
$color_contrast_alt : #0f0a06;
5+
$color_primary : #30533f;
6+
$color_secondary : #437358;
7+
8+
:root {
9+
10+
/* Theme color palette: */
11+
--color_base: $color_base;
12+
--color_contrast: $color_contrast;
13+
--color_contrast_alt: $color_contrast_alt;
14+
--color_primary: $color_primary;
15+
--color_primary_mixed: mix( $color_primary, $color_base, 12.50% );
16+
--color_secondary: $color_secondary;
17+
--color_secondary_mixed: mix( $color_secondary, $color_base, 38.20% );
18+
--color_black: #000000;
19+
--color_white: #ffffff;
20+
21+
--color_gradient_primary: var(--color_secondary);
22+
--color_gradient_radial_primary: var(--color_secondary);
23+
--color_gradient_radial_secondary: transparent;
24+
25+
/* Documentation colors: */
26+
--color_accent: var(--color_primary);
27+
--color_mark: var(--color_primary_mixed);
28+
29+
--color_button_background: var(--color_primary);
30+
--color_button_text: var(--color_white);
31+
32+
--color_header_background: var(--color_base);
33+
--color_header_text: var(--color_contrast_alt);
34+
35+
--color_nav_background: var(--color_secondary);
36+
--color_nav_text: var(--color_black);
37+
--color_nav_background_active: var(--color_primary);
38+
--color_nav_text_active: var(--color_white);
39+
--color_nav_background_hover: var(--color_primary_mixed);
40+
--color_nav_text_hover: var(--color_nav_text);
41+
--color_nav_border: #{ rgba( #000, var(--border_opacity) ) };
42+
--color_nav_prefix_content: var(--color_primary);
43+
--color_nav_prefix_customizing: #0660e5; // Split complementary, https://www.colorhexa.com/e51c06
44+
45+
--color_intro_background: var(--color_primary);
46+
--color_intro_text: var(--color_white);
47+
48+
--color_content_background: var(--color_base);
49+
--color_content_text: var(--color_contrast);
50+
--color_content_headings: var(--color_contrast_alt);
51+
--color_content_border: #{ rgba( #3f3d3d, var(--border_opacity) ) };
52+
53+
--color_heading_entry_background: var(--color_nav_background_active);
54+
--color_heading_entry_text: var(--color_nav_text_active);
55+
56+
--color_footer_background: var(--color_primary);
57+
--color_footer_text: var(--color_white);
58+
}
59+
60+
.intro {
61+
isolation: isolate;
62+
63+
&::before {
64+
content: '';
65+
position: absolute;
66+
inset: 0;
67+
background: url('assets/images/pexels-amina-filkins-5410071.webp');
68+
background-position: 50% 50%;
69+
background-size: cover;
70+
opacity: .1;
71+
z-index: -1;
72+
}
73+
74+
.stars .svg-icon {
75+
fill: var(--color_secondary);
76+
}
77+
}

zooey/includes/_custom-content.pug

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
extends ../../0app/_index.pug
2+
3+
block append styles
4+
include ../assets/css/style.css
5+
6+
//-----------------------------------------------
7+
8+
block append posts
9+
include posts-featured.pug
10+
include blog-layout.pug
11+
12+
block prepend pages/templates/about
13+
include templates.pug
14+
block pages/templates/list
15+
include template-content-only.pug
16+
include template-no-intro.pug
17+
include template-overlaid-header.pug
18+
include template-with-sidebar.pug
19+
20+
block append menu/fse
21+
include menu-image.pug
22+
23+
block prepend customizer/fse/theme-options
24+
include custom-background.pug
25+
include custom-header.pug
26+
27+
block append site-editor/styles/colors/bottom
28+
include colors.pug
29+
30+
block append plugins/recommended/woocommerce
31+
include plugin-wc.pug
32+
33+
block faq/answer/page-builder
34+
include faq-answer-page-builder.pug
35+
block append faq/questions/list
36+
include faq-question-custom-header.pug
37+
include faq-question-mobile-header.pug
38+
include faq-question-sticky-header.pug
39+
include faq-question-progress-bar.pug
40+
include faq-question-space.pug
41+
include faq-question-wc-cart-checkout.pug
42+
include faq-question-wc-layout-product.pug
43+
include faq-question-wc-shop-page.pug
44+
block append faq/answers/list
45+
include faq-answer-custom-header.pug
46+
include faq-answer-mobile-header.pug
47+
include faq-answer-sticky-header.pug
48+
include faq-answer-progress-bar.pug
49+
include faq-answer-space.pug
50+
include faq-answer-wc-cart-checkout.pug
51+
include faq-answer-wc-layout-product.pug
52+
include faq-answer-wc-shop-page.pug
53+
54+
block append sidebars/fse/display
55+
include sidebar-block.pug

zooey/includes/blog-layout.pug

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
+sub_section( 'Blog Layout', 'blog-layout' )
2+
p In #[+mark( 'nav', 'Appearance', 'Customize', 'Theme Options', 'Posts' )] you can choose between two predefined blog page layouts:
3+
4+
ul
5+
li List of posts with sidebar. (This is default layout.) → <em><a href="#{config.url.demo}blog/">Preview</a></em>
6+
li Posts in 2 columns with no sidebar. → <em><a href="#{config.url.demo}blog/?layout=columns">Preview</a></em>
7+
8+
+image( 'blog-layout.jpg', 'Preview of blog layouts (posts list with sidebar, posts list in 2 columns)' )
9+
10+
p Alternatively, create completely custom layout modifying <em>"Template content: Blog"</em> <a href="#site-editor-template-parts">template part in site editor</a>.

0 commit comments

Comments
 (0)