jekyll-theme-pga-default 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5ad61f5c329a23ceb015916b90a8c0bcfcadf01d
4
- data.tar.gz: 286d424fbb951c055d226b072ff6fa6e9230fd51
3
+ metadata.gz: 4e71bbd28e44f1e30392f541b01c9ea0d01cf2e4
4
+ data.tar.gz: 3024ef3f0c3a86209bc83007b07d34074b0aff23
5
5
  SHA512:
6
- metadata.gz: cad7ca37a8edfa7bd2f996ba5f2a57a9f89734210e75af2699d2705e901b5012ba0258ce87b0a955858cbb07b6a830eba1564f58e66eb13e03640c08a8fe4c8f
7
- data.tar.gz: 259d1b9eafe749ac230df57d181aa9f861ccbe9132fc535815386d165d06fd7361ae077925b036269ee32b294bf97d25ce0caa9f93a00bc10978d1971b7acc5a
6
+ metadata.gz: 0ba0b2e19b0de0f0a86c75fc853a168e68c3e696410b4d967ce7e09477098176a4942264cdc142a170845c42462f7d49b097f0faebc48aab9fbdd7bd36186b7e
7
+ data.tar.gz: c8624b1ed461025669b467de0e5008ebcd7a3efcfad11ee0be7a4dfaa02a4674f2bef33e420e989a2adeebc154632c5cc16e21ce7032ab588305bae160dc976a
@@ -0,0 +1,10 @@
1
+ <style>
2
+ {% capture coming_soon_styles %}
3
+ {% include styles/coming_soon.scss %}
4
+ {% endcapture %}
5
+ {{ coming_soon_styles | scssify }}
6
+ </style>
7
+
8
+ <div class="ContentFrame">
9
+ <h2 class="TextFrame text-center">Coming Soon!</h2>
10
+ </div>
@@ -1,29 +0,0 @@
1
- <article class="component">
2
- <header class="component__header">
3
- <div class="component__code {% if forloop.first %}pb-4{% else %}py-4{% endif %}">
4
- <h3 id="guide-{{ entry.title | slugify }}" class="d-inline">{{ entry.title }}</h3>
5
- <a class="ml-2" data-toggle="collapse" href="{{ entry.title | prepend: '#' }}" role="button" aria-expanded="false">
6
- Code<i style="font-size:12px; padding-left:5px;" class="icon icon-arrow-down"></i>
7
- </a>
8
- </div>
9
- </header>
10
-
11
- <div class="component__body">
12
- <div class="collapse" id="{{ entry.title }}">
13
-
14
- <!-- Indent to left for code format -->
15
- {% highlight html %}
16
- {{ entry.content }}
17
- {% endhighlight %}
18
-
19
- </div>
20
-
21
- {% if entry.usage %}<p><strong>Usage:</strong> {{ entry.usage }}</p>{% endif %}
22
-
23
- <div class="component__content">
24
- <div class="component__rendered">
25
- {{ entry.content }}
26
- </div>
27
- </div>
28
- </div>
29
- </article>
@@ -0,0 +1,34 @@
1
+ <style>
2
+ {% capture footer_styles %}
3
+ {% include styles/footer.scss %}
4
+ {% endcapture %}
5
+ {{ footer_styles | scssify }}
6
+ </style>
7
+
8
+ <footer class="FooterElement">
9
+ <div class="container">
10
+ <div class="row">
11
+ {% for i in site.data.components.footer %}
12
+ <section class="FooterSection">
13
+ <div class="FooterSectionTop">
14
+ <div class="FooterSectionHeader">
15
+ {{ i.title }}
16
+ </div>
17
+ <div class="FooterSectionContent">
18
+ {% for o in i.options %}
19
+ <ul>
20
+ <li>
21
+ <a href="{{ o.link }}">{{o.label}} </a>
22
+ </li>
23
+ </ul>
24
+ {% endfor %}
25
+ </div>
26
+ </div>
27
+ {% if forloop.last %}
28
+ <p class="FooterCopyright">© 2018 The PGA of America</p>
29
+ {% endif %}
30
+ </section>
31
+ {% endfor %}
32
+ </div>
33
+ </div>
34
+ </footer>
@@ -0,0 +1,41 @@
1
+ $primary: #00234b;
2
+ $primaryOpacity: rgba(0, 35, 75, 0.75);
3
+ $primaryWithOpacity: rgba(0, 35, 75, 0.5);
4
+ $primaryOpaque: rgba(0, 35, 75, 0);
5
+ $primaryShadow: rgba(0, 35, 75, 0.15);
6
+ $greyOpacity: rgba(0, 0, 0, 0.15);
7
+ $secondary: #5A7485;
8
+ $menu: #46596b;
9
+ $gold: #b4975a;
10
+ $grey: #B1B1B1;
11
+ $greyBlue: rgba(127, 145, 165, 0.5);
12
+ $lightgrey: #f4f7f8;
13
+ $darkgrey: #dee2e3;
14
+ $darkerLtGrey: #868e96;
15
+ $deepGrey: #999999;
16
+ $black: #000000;
17
+ $lightBlue: #0082ce;
18
+ $white: #FFFFFF;
19
+ $blueGrey: #7f91a5;
20
+
21
+
22
+ // div
23
+ .ContentFrame {
24
+ display: flex;
25
+ height: 400px;
26
+ background-blend-mode: lighten;
27
+ background-position: center;
28
+ background: url("/assets/images/golfCourse.jpg");
29
+ background-size: cover;
30
+ box-shadow: 0 5px 10px 0;
31
+ margin-top: 30px;
32
+ }
33
+
34
+ // h2
35
+ .TextFrame {
36
+ width: 100%;
37
+ height: 100%;
38
+ color: white;
39
+ padding-top: 30px;
40
+ background: linear-gradient(to top, $primaryOpaque 0%, $primary 80%);
41
+ }
@@ -0,0 +1,93 @@
1
+ $footerSectionHeader: white;
2
+ $footerSectionContent: gray;
3
+ $footerCopyright: #999999;
4
+ $footerBackground: #00234b;
5
+ $primaryShadow: rgba(0, 35, 75, 0.15);
6
+
7
+ // footer
8
+ .FooterElement {
9
+ color: $footerSectionContent;
10
+ font-family: "Montserrat", sans-serif;
11
+ padding: 50px 0;
12
+ display: flex;
13
+ flex-wrap: wrap;
14
+ position: relative;
15
+ justify-content: center;
16
+ width: 100%;
17
+ background-color: $footerBackground;
18
+ box-shadow: 0 5px 10px 0 $primaryShadow;
19
+ }
20
+
21
+ // section
22
+ .FooterSection {
23
+ margin-bottom: 0px;
24
+ min-height: 1px;
25
+ padding-right: 15px;
26
+ padding-left: 15px;
27
+ display: flex;
28
+ flex-direction: column;
29
+ justify-content: space-between;
30
+ flex: 0 0 100%;
31
+ max-width: 100%;
32
+ margin-bottom: 1rem;
33
+ @media (min-width: 576px) {
34
+ flex: 0 0 50%;
35
+ max-width: 50%;
36
+ }
37
+ @media (min-width: 768px) {
38
+ flex: 0 0 33.33333%;
39
+ max-width: 33.33333%;
40
+ }
41
+ @media (min-width: 992px) {
42
+ flex: 0 0 20%;
43
+ max-width: 20%;
44
+ margin-bottom: 0;
45
+ }
46
+ }
47
+
48
+ // div
49
+ .FooterSectionHeader {
50
+ font-weight: 700;
51
+ line-height: 1.2;
52
+ font-size: 16px;
53
+ margin-bottom: .75rem;
54
+ color: $footerSectionHeader;
55
+ }
56
+
57
+ // div
58
+ .FooterSectionTop {
59
+
60
+ }
61
+
62
+ // div
63
+ .FooterSectionContent {
64
+ > a {
65
+ width: 100%;
66
+ font-weight: 500;
67
+ color: $footerSectionContent;
68
+ }
69
+ > ul {
70
+ list-style-type: none;
71
+ margin: 0;
72
+ padding: 0;
73
+ }
74
+ li > a {
75
+ font-size: 12px;
76
+ color: $footerSectionContent;
77
+ text-decoration: none;
78
+ &:hover {
79
+ opacity: 0.8;
80
+ }
81
+ }
82
+ li {
83
+ margin-top: 8px;
84
+ }
85
+ }
86
+
87
+ // p
88
+ .FooterCopyright {
89
+ color: $footerCopyright;
90
+ font-size: 10px;
91
+ margin-bottom: .125rem;
92
+ opacity: 0.6;
93
+ }
data/_sass/main.scss CHANGED
@@ -32,4 +32,8 @@
32
32
  @import 'theme/components/header';
33
33
  @import 'theme/components/breadcrumbs';
34
34
  @import 'theme/components/button';
35
- @import 'theme/components/footer';
35
+ @import 'theme/components/footer';
36
+
37
+
38
+ @import 'components/button';
39
+ @import 'components/header';
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-pga-default
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - PGA of America
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-07-07 00:00:00.000000000 Z
11
+ date: 2018-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -61,10 +61,14 @@ extra_rdoc_files: []
61
61
  files:
62
62
  - LICENSE.txt
63
63
  - README.md
64
+ - _includes/coming_soon.html
64
65
  - _includes/component.html
65
66
  - _includes/foot.html
67
+ - _includes/footer.html
66
68
  - _includes/head.html
67
69
  - _includes/header.html
70
+ - _includes/styles/coming_soon.scss
71
+ - _includes/styles/footer.scss
68
72
  - _layouts/default.html
69
73
  - _layouts/page.html
70
74
  - _layouts/post.html
@@ -104,6 +108,7 @@ files:
104
108
  - assets/fonts/icomoon/icomoon.svg
105
109
  - assets/fonts/icomoon/icomoon.ttf
106
110
  - assets/fonts/icomoon/icomoon.woff
111
+ - assets/images/golfCourse.jpg
107
112
  - assets/images/pga-logo-tm.svg
108
113
  - assets/main.scss
109
114
  homepage: https://github.com/pgahq/jekyll-theme-pga-default