Commit 8762a9d 1 parent 40f50d5 commit 8762a9d Copy full SHA for 8762a9d
File tree 12 files changed +33
-76
lines changed
12 files changed +33
-76
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,10 @@ A Demo website of the Beautiful Gardens static website generator boilerplate is
57
57
58
58
## Changelog ##
59
59
60
+ ### 1.1.0 ###
61
+
62
+ * Created partial for section-title block
63
+
60
64
### 1.0.5 ###
61
65
62
66
* Added gulp copy of github readme for website
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " beautiful-gardens" ,
3
- "version" : " 1.0.5 " ,
3
+ "version" : " 1.1.0 " ,
4
4
"description" : " Static website generator boilerplate" ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change 2
2
layout: default
3
3
title: About
4
4
---
5
- < section class ="section-title ">
6
- < div class ="container ">
7
- < div class ="row ">
8
- < div class ="col-md-12 ">
9
- < h1 > About</ h1 >
10
- < hr >
11
- </ div >
12
- </ div >
13
- </ div >
14
- </ section >
5
+ {{> sectiontitle}}
15
6
16
7
< div id ="about-gardens ">
17
8
< section class ="section-header ">
Original file line number Diff line number Diff line change 1
1
---
2
2
layout: default
3
- title: Galleries
3
+ title: Picture Galleries
4
4
---
5
- < section class ="section-title ">
6
- < div class ="container ">
7
- < div class ="row ">
8
- < div class ="col-md-12 ">
9
- < h1 > Picture Galleries</ h1 >
10
- < hr >
11
- </ div >
12
- </ div >
13
- </ div >
14
- </ section >
5
+ {{> sectiontitle}}
15
6
16
7
< section class ="gallery-index ">
17
8
< div class ="container ">
Original file line number Diff line number Diff line change 3
3
title: Balboa Park Picture Gallery
4
4
lightgallery: true
5
5
---
6
- < section class ="section-title ">
7
- < div class ="container ">
8
- < div class ="row ">
9
- < div class ="col-md-12 ">
10
- < h1 > Balboa Park Picture Gallery</ h1 >
11
- < hr >
12
- </ div >
13
- </ div >
14
- </ div >
15
- </ section >
6
+ {{> sectiontitle}}
7
+
16
8
< section >
17
9
< div class ="container ">
18
10
< div class ="garden-gallery ">
Original file line number Diff line number Diff line change 3
3
title: Cedar Valley Arboretum Picture Gallery
4
4
lightgallery: true
5
5
---
6
- < section class ="section-title ">
7
- < div class ="container ">
8
- < div class ="row ">
9
- < div class ="col-md-12 ">
10
- < h1 > Cedar Valley Arboretum Picture Gallery</ h1 >
11
- < hr >
12
- </ div >
13
- </ div >
14
- </ div >
15
- </ section >
6
+ {{> sectiontitle}}
7
+
16
8
< section >
17
9
< div class ="container ">
18
10
< div class ="garden-gallery ">
Original file line number Diff line number Diff line change 3
3
title: UC Irvine Campus Picture Gallery
4
4
lightgallery: true
5
5
---
6
- < section class ="section-title ">
7
- < div class ="container ">
8
- < div class ="row ">
9
- < div class ="col-md-12 ">
10
- < h1 > UC Irvine Campus Picture Gallery</ h1 >
11
- < hr >
12
- </ div >
13
- </ div >
14
- </ div >
15
- </ section >
6
+ {{> sectiontitle}}
7
+
16
8
< section >
17
9
< div class ="container ">
18
10
< div class ="garden-gallery ">
Original file line number Diff line number Diff line change 3
3
title: Desert Garden in Balboa Park Picture Gallery
4
4
lightgallery: true
5
5
---
6
- < section class ="section-title ">
7
- < div class ="container ">
8
- < div class ="row ">
9
- < div class ="col-md-12 ">
10
- < h1 > Desert Garden in Balboa Park Picture Gallery</ h1 >
11
- < hr >
12
- </ div >
13
- </ div >
14
- </ div >
15
- </ section >
6
+ {{> sectiontitle}}
7
+
16
8
< section >
17
9
< div class ="container ">
18
10
< div class ="garden-gallery ">
Original file line number Diff line number Diff line change 16
16
</ div >
17
17
18
18
< div class ="col-md-9 col-md-pull-3 ">
19
- < section class ="section-title ">
20
- < h1 > Links</ h1 >
21
- < hr >
22
- </ section >
19
+ {{> sectiontitle2col}}
23
20
24
21
< div id ="links-listings ">
25
22
< section class ="section-header " id ="GARDENS-INFO ">
Original file line number Diff line number Diff line change 3
3
title: Plant list
4
4
tablesort: true
5
5
---
6
- < section class ="section-title ">
7
- < div class ="container ">
8
- < div class ="row ">
9
- < div class ="col-md-12 ">
10
- < h1 > Plant list</ h1 >
11
- < hr >
12
- </ div >
13
- </ div >
14
- </ div >
15
- </ section >
6
+ {{> sectiontitle}}
7
+
16
8
< section >
17
9
< div class ="container ">
18
10
< p class ="font-md-lg "> This is just a small sample of the plants in the gardens featured on this site. The type is how I chose to categorize each plant. The table columns can be sorted by clicking on the header.</ p >
Original file line number Diff line number Diff line change
1
+ < section class ="section-title ">
2
+ < div class ="container ">
3
+ < div class ="row ">
4
+ < div class ="col-md-12 ">
5
+ < h1 > {{title}}</ h1 >
6
+ < hr class ="hidden-print ">
7
+ </ div >
8
+ </ div >
9
+ </ div >
10
+ </ section >
Original file line number Diff line number Diff line change
1
+ < section class ="section-title ">
2
+ < h1 > {{title}}</ h1 >
3
+ < hr class ="hidden-print ">
4
+ </ section >
You can’t perform that action at this time.
0 commit comments