jekyll-theme-portfolio 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (114) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.md +21 -0
  3. data/README.md +19 -0
  4. data/_includes/footer.html +57 -0
  5. data/_includes/head.html +12 -0
  6. data/_includes/header.html +43 -0
  7. data/_layouts/default.html +20 -0
  8. data/_layouts/home.html +41 -0
  9. data/_layouts/page.html +13 -0
  10. data/_layouts/portfolio.html +66 -0
  11. data/_layouts/post.html +23 -0
  12. data/_sass/_bootstrap_customization.scss +332 -0
  13. data/_sass/_syntax-highlighting.scss +74 -0
  14. data/_sass/_variables.scss +106 -0
  15. data/_sass/bootstrap-4-jekyll/_bootstrap-4-jekyll.scss +8 -0
  16. data/_sass/bootstrap/__DO_NOT_MODIFY +0 -0
  17. data/_sass/bootstrap/_alert.scss +51 -0
  18. data/_sass/bootstrap/_badge.scss +54 -0
  19. data/_sass/bootstrap/_breadcrumb.scss +41 -0
  20. data/_sass/bootstrap/_button-group.scss +163 -0
  21. data/_sass/bootstrap/_buttons.scss +137 -0
  22. data/_sass/bootstrap/_card.scss +289 -0
  23. data/_sass/bootstrap/_carousel.scss +197 -0
  24. data/_sass/bootstrap/_close.scss +41 -0
  25. data/_sass/bootstrap/_code.scss +48 -0
  26. data/_sass/bootstrap/_custom-forms.scss +507 -0
  27. data/_sass/bootstrap/_dropdown.scss +191 -0
  28. data/_sass/bootstrap/_forms.scss +330 -0
  29. data/_sass/bootstrap/_functions.scss +86 -0
  30. data/_sass/bootstrap/_grid.scss +52 -0
  31. data/_sass/bootstrap/_images.scss +42 -0
  32. data/_sass/bootstrap/_input-group.scss +193 -0
  33. data/_sass/bootstrap/_jumbotron.scss +17 -0
  34. data/_sass/bootstrap/_list-group.scss +149 -0
  35. data/_sass/bootstrap/_media.scss +8 -0
  36. data/_sass/bootstrap/_mixins.scss +47 -0
  37. data/_sass/bootstrap/_modal.scss +229 -0
  38. data/_sass/bootstrap/_nav.scss +120 -0
  39. data/_sass/bootstrap/_navbar.scss +294 -0
  40. data/_sass/bootstrap/_pagination.scss +73 -0
  41. data/_sass/bootstrap/_popover.scss +171 -0
  42. data/_sass/bootstrap/_print.scss +141 -0
  43. data/_sass/bootstrap/_progress.scss +43 -0
  44. data/_sass/bootstrap/_reboot.scss +483 -0
  45. data/_sass/bootstrap/_root.scss +19 -0
  46. data/_sass/bootstrap/_spinners.scss +55 -0
  47. data/_sass/bootstrap/_tables.scss +185 -0
  48. data/_sass/bootstrap/_toasts.scss +44 -0
  49. data/_sass/bootstrap/_tooltip.scss +115 -0
  50. data/_sass/bootstrap/_transitions.scss +20 -0
  51. data/_sass/bootstrap/_type.scss +125 -0
  52. data/_sass/bootstrap/_utilities.scss +17 -0
  53. data/_sass/bootstrap/_variables.scss +1123 -0
  54. data/_sass/bootstrap/bootstrap-grid.scss +29 -0
  55. data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
  56. data/_sass/bootstrap/bootstrap.scss +44 -0
  57. data/_sass/bootstrap/mixins/_alert.scss +13 -0
  58. data/_sass/bootstrap/mixins/_background-variant.scss +21 -0
  59. data/_sass/bootstrap/mixins/_badge.scss +17 -0
  60. data/_sass/bootstrap/mixins/_border-radius.scss +63 -0
  61. data/_sass/bootstrap/mixins/_box-shadow.scss +20 -0
  62. data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
  63. data/_sass/bootstrap/mixins/_buttons.scss +107 -0
  64. data/_sass/bootstrap/mixins/_caret.scss +62 -0
  65. data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
  66. data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
  67. data/_sass/bootstrap/mixins/_float.scss +14 -0
  68. data/_sass/bootstrap/mixins/_forms.scss +192 -0
  69. data/_sass/bootstrap/mixins/_gradients.scss +45 -0
  70. data/_sass/bootstrap/mixins/_grid-framework.scss +66 -0
  71. data/_sass/bootstrap/mixins/_grid.scss +51 -0
  72. data/_sass/bootstrap/mixins/_hover.scss +37 -0
  73. data/_sass/bootstrap/mixins/_image.scss +36 -0
  74. data/_sass/bootstrap/mixins/_list-group.scss +21 -0
  75. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  76. data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
  77. data/_sass/bootstrap/mixins/_pagination.scss +22 -0
  78. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  79. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  80. data/_sass/bootstrap/mixins/_screen-reader.scss +33 -0
  81. data/_sass/bootstrap/mixins/_size.scss +7 -0
  82. data/_sass/bootstrap/mixins/_table-row.scss +39 -0
  83. data/_sass/bootstrap/mixins/_text-emphasis.scss +16 -0
  84. data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
  85. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  86. data/_sass/bootstrap/mixins/_transition.scss +16 -0
  87. data/_sass/bootstrap/mixins/_visibility.scss +8 -0
  88. data/_sass/bootstrap/utilities/_align.scss +8 -0
  89. data/_sass/bootstrap/utilities/_background.scss +19 -0
  90. data/_sass/bootstrap/utilities/_borders.scss +75 -0
  91. data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
  92. data/_sass/bootstrap/utilities/_display.scss +26 -0
  93. data/_sass/bootstrap/utilities/_embed.scss +39 -0
  94. data/_sass/bootstrap/utilities/_flex.scss +51 -0
  95. data/_sass/bootstrap/utilities/_float.scss +11 -0
  96. data/_sass/bootstrap/utilities/_overflow.scss +5 -0
  97. data/_sass/bootstrap/utilities/_position.scss +32 -0
  98. data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
  99. data/_sass/bootstrap/utilities/_shadows.scss +6 -0
  100. data/_sass/bootstrap/utilities/_sizing.scss +20 -0
  101. data/_sass/bootstrap/utilities/_spacing.scss +73 -0
  102. data/_sass/bootstrap/utilities/_stretched-link.scss +19 -0
  103. data/_sass/bootstrap/utilities/_text.scss +72 -0
  104. data/_sass/bootstrap/utilities/_visibility.scss +13 -0
  105. data/_sass/bootstrap/vendor/_rfs.scss +204 -0
  106. data/assets/images/projects/nativescript.png +0 -0
  107. data/assets/images/projects/puppet.png +0 -0
  108. data/assets/javascript/bootstrap/__DO_NOT_MODIFY +0 -0
  109. data/assets/javascript/bootstrap/bootstrap.bundle.min.js +7 -0
  110. data/assets/javascript/bootstrap/bootstrap.bundle.min.js.map +1 -0
  111. data/assets/javascript/bootstrap/jquery.min.js +2 -0
  112. data/assets/javascript/bootstrap/jquery.min.map +1 -0
  113. data/assets/main.scss +9 -0
  114. metadata +219 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 047ef6298a3c5943e7941ac7a7881577785eb7d1
4
+ data.tar.gz: 63e3840292c2235f72a87d25d2d144d191b83178
5
+ SHA512:
6
+ metadata.gz: 591c85df6e5cb7c33bd625867760cc9082651f5e52b88fa498917b2c4f5cc86af2ca1ee3625ecf75b48e78fc04025195ea2dade7b9f239701ff6dbdce66611be
7
+ data.tar.gz: f6ae3964aa4a4c4eac3add0a2a9fda0821f1bc63d3b6b048a8c42dcda546173283622ab17ed9f29aaf31497ca61c9c150605f60c28c823ff6005a749aff181de
data/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2018 Nicolas Vanhoren
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # Portfolio Page for Github Pages
2
+
3
+ The goal of this project is to make it easy for people who want to host their portfolio to actually do so without having to jump through a ton of hoops or pay any money. I originally made this for [my own portfolio](https://projects.tedivm.com/) after realizing that all the existing portfolio themes were expensive or required extensive customization.
4
+
5
+ This project is a [Jekyll](https://jekyllrb.com/) theme, which means that it can be used to set up a free website on [Github Pages](https://pages.github.com/).
6
+
7
+ It is possible to use this theme without understanding anything about building websites. It works by using a configuration file to store all of your projects, which it then displays (including logos, descriptions, and a variety of links). This way when you want to add a new project all you have to do is add a few lines to a configuration and it will appear.
8
+
9
+ It is also possible to go beyond that and customize the project right down to the CSS. This theme is made with [Bootstrap 4](https://getbootstrap.com/) and [SCSS](https://sass-lang.com/documentation/syntax).
10
+
11
+
12
+ # Awknowledgements
13
+
14
+ This project was forked off of the excellent [Boostrap 4 Github Pages project](https://github.com/nicolas-van/bootstrap-4-github-pages).
15
+
16
+ * A full Bootstrap 4 theme usable both on Github Pages and with a standalone Jekyll.
17
+ * Recompiles Bootstrap from SCSS files, which allows to customize Bootstrap's variables and use Bootstrap themes.
18
+ * Full support of Bootstrap's JavaScript plugins.
19
+ * Supports all features of Github Pages and Jekyll.
@@ -0,0 +1,57 @@
1
+
2
+ <div class="py-5 border-top">
3
+ <div class="container">
4
+
5
+
6
+ <div class="row">
7
+
8
+ <div class="col-sm">
9
+ <ul class="list-unstyled">
10
+ <li>
11
+ {%- if site.author -%}
12
+ {{ site.author | escape }}
13
+ {%- else -%}
14
+ {{ site.description | escape }}
15
+ {%- endif -%}
16
+ </li>
17
+ {%- if site.email -%}
18
+ <li>
19
+ <a href="mailto:{{ site.email }}">
20
+ {{ site.email }}
21
+ </a>
22
+ </li>
23
+ {%- endif -%}
24
+ </ul>
25
+ </div>
26
+
27
+ <div class="col-sm text-right">
28
+ {% if site.tagline %}<p>{{- site.tagline | escape -}}</p>{% endif %}
29
+ </div>
30
+
31
+ </div>
32
+
33
+ </div>
34
+ </div>
35
+
36
+
37
+ {% if site.fathom_key %}
38
+ <!-- Fathom - simple website analytics - https://github.com/usefathom/fathom -->
39
+ <script>
40
+ (function(f, a, t, h, o, m){
41
+ a[h]=a[h]||function(){
42
+ (a[h].q=a[h].q||[]).push(arguments)
43
+ };
44
+ o=f.createElement('script'),
45
+ m=f.getElementsByTagName('script')[0];
46
+ o.async=1; o.src=t; o.id='fathom-script';
47
+ m.parentNode.insertBefore(o,m)
48
+ {% if site.fathom_domain -%}
49
+ })(document, window, '//{{ site.fathom_domain }}/tracker.js', 'fathom');
50
+ {%- else -%}
51
+ })(document, window, '//stats.usefathom.com/tracker.js', 'fathom');
52
+ {%- endif %}
53
+ fathom('set', 'siteId', '{{ site.fathom_key }}');
54
+ fathom('trackPageview');
55
+ </script>
56
+ <!-- / Fathom -->
57
+ {%- endif -%}
@@ -0,0 +1,12 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1">
5
+ {%- seo -%}
6
+ <link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
7
+ <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
8
+ {%- feed_meta -%}
9
+ <script defer src="{{ "/assets/javascript/bootstrap/jquery.min.js" | relative_url }}"></script>
10
+ <script defer src="{{ "/assets/javascript/bootstrap/bootstrap.bundle.min.js" | relative_url }}"></script>
11
+ <script defer src="https://buttons.github.io/buttons.js" integrity="sha384-szBDCttiBKEqclgvjfm0xu/GOyoGJH3pVG2Ptr69bXpDc9ZU0Ed0BYkeZZ98F7Ym" crossorigin="anonymous"></script>
12
+ </head>
@@ -0,0 +1,43 @@
1
+ <nav class="navbar navbar-expand-lg navbar-dark bg-primary">
2
+ <div class="container">
3
+ <a class="navbar-brand" rel="author" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
4
+
5
+ {%- assign page_paths = site.header_pages -%}
6
+ <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
7
+ aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
8
+ <span class="navbar-toggler-icon"></span>
9
+ </button>
10
+ <div class="collapse navbar-collapse" id="navbarSupportedContent">
11
+ <ul class="navbar-nav ml-auto">
12
+ {%- for path in page_paths -%}
13
+ {%- assign my_page = site.pages | where: "path", path | first -%}
14
+ {%- if my_page.title -%}
15
+ <li class="nav-item">
16
+ <a class="nav-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
17
+ </li>
18
+ {%- endif -%}
19
+ {% endfor -%}
20
+ {% if site.homepage %}
21
+ <li class="nav-item">
22
+ <a class="nav-link" href="{{ site.homepage }}" aria-label="Go to homepage"><i class="fas fa-home fa-2x" title="Go to homepage."></i></a>
23
+ </li>
24
+ {% endif %}
25
+ {% if site.github_username %}
26
+ <li class="nav-item">
27
+ <a class="nav-link" href="https://github.com/{{ site.github_username }}" aria-label="Follow @{{ site.github_username }} on Github"><i class="fab fa-github fa-2x" title="Follow @{{ site.github_username }} on Github"></i></a>
28
+ </li>
29
+ {% endif %}
30
+ {% if site.twitter_username %}
31
+ <li class="nav-item">
32
+ <a class="nav-link" href="https://twitter.com/{{ site.twitter_username }}" aria-label="Follow @{{ site.twitter_username }} on Twitter"><i class="fab fa-twitter fa-2x" title="Follow @{{ site.twitter_username }} on Twitter"></i></a>
33
+ </li>
34
+ {% endif %}
35
+ {% if site.linkedin_username %}
36
+ <li class="nav-item">
37
+ <a class="nav-link" href="https://www.linkedin.com/in/{{ site.linkedin_username }}/" aria-label="Follow @{{ site.linkedin_username }} on LinkedIn"><i class="fab fa-linkedin fa-2x" title="Follow @{{ site.linkedin_username }} on LinkedIn"></i></a>
38
+ </li>
39
+ {% endif %}
40
+ </ul>
41
+ </div>
42
+ </div>
43
+ </nav>
@@ -0,0 +1,20 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
+
4
+ {%- include head.html -%}
5
+
6
+ <body>
7
+
8
+ {%- include header.html -%}
9
+
10
+ <div class="py-5">
11
+ <div class="container page-content">
12
+ {{ content }}
13
+ </div>
14
+ </div>
15
+
16
+ {%- include footer.html -%}
17
+
18
+ </body>
19
+
20
+ </html>
@@ -0,0 +1,41 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div>
6
+
7
+ {%- if page.title -%}
8
+ <header>
9
+ <h1>{{ page.title }}</h1>
10
+ </header>
11
+ {%- endif -%}
12
+
13
+ <section>
14
+ {{ content }}
15
+ </section>
16
+
17
+ {%- if site.posts.size > 0 -%}
18
+ <p class="h4">{{ page.list_title | default: "Posts" }}</p>
19
+ <ul class="list-unstyled">
20
+ {%- for post in site.posts -%}
21
+ <li>
22
+ <span class="text-muted">
23
+ {%- assign date_format = "%b %-d, %Y" -%}
24
+ {{ post.date | date: date_format }}
25
+ </span>
26
+ <p class="h5">
27
+ <a href="{{ post.url | relative_url }}">
28
+ {{ post.title | escape }}
29
+ </a>
30
+ </p>
31
+ {%- if site.show_excerpts -%}
32
+ {{ post.excerpt }}
33
+ {%- endif -%}
34
+ </li>
35
+ {%- endfor -%}
36
+ </ul>
37
+
38
+ <p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p>
39
+ {%- endif -%}
40
+
41
+ </div>
@@ -0,0 +1,13 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <article>
5
+ {% if page.title %}
6
+ <header>
7
+ <h1>{{ page.title | escape }}</h1>
8
+ </header>
9
+ {% endif %}
10
+ <section>
11
+ {{ content }}
12
+ </section>
13
+ </article>
@@ -0,0 +1,66 @@
1
+ ---
2
+ layout: page
3
+ ---
4
+ {{ content }}
5
+ {% for category in site.data.projects %}
6
+ <div class='row'>
7
+ <div class='col-12 my-3'>
8
+ <h3>{{ category.name }}</h3>
9
+ {% if category.description %}
10
+ <div class="alert alert-light">{{ category.description | safe | newline_to_br }}</div>
11
+ {% endif %}
12
+ {%- assign columns = 3 -%}
13
+ {% for project in category.projects %}
14
+ {% assign loop = forloop.index | minus: 1 | modulo: columns %}
15
+ {% if loop == 0 %}
16
+ <div class="row">
17
+ {% endif %}
18
+ <div class="col-12 col-sm-6 col-xl-{{ 12 | divided_by: columns | int }} my-3">
19
+ <div class="card">
20
+ <div class="text-center">
21
+ {% if project.image %}
22
+ <img src="{{ "/assets/images/projects" | relative_url }}/{{ project.image }}" class="py-1 w-50 card-img-top" alt="{{ project.name }} Project Logo">
23
+ {% elsif project.icon %}
24
+ <i class="{{ project.icon}} fa-10x py-2 logo-icon"></i><br><br>
25
+ {% elsif category.image %}
26
+ <img src="{{ "/assets/images/projects" | relative_url }}/{{ category.image }}" class="py-1 w-50 card-img-top" alt="{{ project.name }} Project Logo">
27
+ {% elsif category.icon %}
28
+ <i class="{{ category.icon}} fa-10x py-2 logo-icon"></i><br><br>
29
+ {% else %}
30
+ <i class="fas fa-code-branch fa-10x py-2 logo-icon"></i><br><br>
31
+ {% endif %}
32
+ </div>
33
+ <div class="card-body">
34
+ <h5 class="card-title">{{ project.name }}
35
+ {% if project.github %}
36
+ <div class="float-right"><a class="github-button" href="https://github.com/{{ project.github }}" data-show-count="true" aria-label="Star {{ project.name }} on GitHub">Star</a><div>
37
+ {% endif %}
38
+ </h5>
39
+ {% if project.description %}
40
+ <p class="card-text">{{ project.description | safe | newline_to_br }}</p>
41
+ {% endif %}
42
+ </div>
43
+ <ul class="list-group list-group-flush">
44
+ <li class="list-group-item text-center">
45
+ {% if project.homepage %}<a href="{{ project.homepage }}" class="card-link"><i class="fas fa-home fa-2x" title="{{ project.name }} Homepage"></i></a>{% endif %}
46
+ {% if project.documentation %}<a href="{{ project.documentation }}" class="card-link"><i class="fas fa-book-open fa-2x" title="{{ project.name }} Documentation"></i></a>{% endif %}
47
+ {% if project.github %}<a href="https://github.com/{{ project.github }}" class="card-link"><i class="fab fa-github fa-2x" title="{{ project.name }} on Github"></i></a>{% endif %}
48
+ {% if project.dockerhub %}<a href="https://hub.docker.com/r/{{ project.dockerhub }}" class="card-link"><i class="fab fa-docker fa-2x" title="{{ project.name }} on Docker Hub"></i></a>{% endif %}
49
+ {% if project.puppet_forge %}<a href="https://forge.puppet.com/{{ project.puppet_forge }}" class="card-link"><i class="fas fa-flask fa-2x" title="{{ project.name }} on Puppet Forge"></i></a>{% endif %}
50
+ {% if project.npm %}<a href="https://www.npmjs.com/package/{{ project.npm }}" class="card-link"><i class="fab fa-npm fa-2x" title="{{ project.name }} on the NPM Registry"></i></a>{% endif %}
51
+ {% if project.pypi %}<a href="https://pypi.org/project/{{ project.pypi }}/" class="card-link"><i class="fab fa-python fa-2x" title="{{ project.name }} on PyPI"></i></a>{% endif %}
52
+ {% if project.packagist %}<a href="https://packagist.org/packages/{{ project.packagist }}" class="card-link"><i class="fab fa-php fa-2x" title="{{ project.name }} on Packagist"></i></a>{% endif %}
53
+ {% if project.wordpress %}<a href="https://wordpress.org/plugins/{{ project.wordpress }}/" class="card-link"><i class="fab fa-wordpress fa-2x" title="{{ project.name }} on the Wordpress Plugin Directory"></i></a>{% endif %}
54
+ </li>
55
+ </ul>
56
+ </div>
57
+ </div>
58
+ {%- assign last_loop = columns | minus: 1 -%}
59
+ {% if loop == last_loop or forloop.last == true %}
60
+ </div>
61
+ {%- endif -%}
62
+ {%- endfor -%}
63
+ </div>
64
+ </div>
65
+
66
+ {% endfor %}
@@ -0,0 +1,23 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <article>
5
+
6
+ <header>
7
+ <h1>{{ page.title | escape }}</h1>
8
+ <p class="text-muted">
9
+ <time datetime="{{ page.date | date_to_xmlschema }}">
10
+ {%- assign date_format = "%b %-d, %Y" -%}
11
+ {{ page.date | date: date_format }}
12
+ </time>
13
+ {%- if page.author -%}
14
+ • {{ page.author }}
15
+ {%- endif -%}
16
+ </p>
17
+ </header>
18
+
19
+ <section>
20
+ {{ content }}
21
+ </section>
22
+
23
+ </article>
@@ -0,0 +1,332 @@
1
+ // This is the place to place Bootstrap-related CSS customizations.
2
+ // As example you can start by importing the _bootswatch.scss file from one of the
3
+ // theme provided by https://bootswatch.com .
4
+
5
+ // Minty 4.3.1
6
+ // Bootswatch
7
+
8
+ // Variables ===================================================================
9
+
10
+ $web-font-path: "https://fonts.googleapis.com/css?family=Montserrat" !default;
11
+ @import url($web-font-path);
12
+
13
+ // Navbar ======================================================================
14
+
15
+ .navbar {
16
+ font-family: $headings-font-family;
17
+ }
18
+
19
+ .bg-dark {
20
+ background-color: $secondary !important;
21
+ }
22
+
23
+ .border-dark {
24
+ border-color: $secondary !important;
25
+ }
26
+
27
+ // Buttons =====================================================================
28
+
29
+ .btn {
30
+ font-family: $headings-font-family;
31
+
32
+ &,
33
+ &:hover {
34
+ color: $white;
35
+ }
36
+
37
+ &-light,
38
+ &-light:hover {
39
+ color: $gray-700;
40
+ }
41
+
42
+ &-link,
43
+ &-link:hover {
44
+ color: $primary;
45
+ }
46
+
47
+ &-link.disabled:hover {
48
+ color: $gray-600;
49
+ }
50
+
51
+ &-outline-primary {
52
+ color: $primary;
53
+ }
54
+
55
+ &-outline-secondary {
56
+ color: $secondary;
57
+ }
58
+
59
+ &-outline-success {
60
+ color: $success;
61
+ }
62
+
63
+ &-outline-info {
64
+ color: $info;
65
+ }
66
+
67
+ &-outline-warning {
68
+ color: $warning;
69
+ }
70
+
71
+ &-outline-danger {
72
+ color: $danger;
73
+ }
74
+
75
+ &-outline-dark {
76
+ color: $dark;
77
+ }
78
+
79
+ &-outline-light {
80
+ color: $light;
81
+ }
82
+ }
83
+
84
+ // Typography ==================================================================
85
+
86
+ // Tables ======================================================================
87
+
88
+ .table {
89
+
90
+ &-primary,
91
+ &-secondary,
92
+ &-success,
93
+ &-info,
94
+ &-warning,
95
+ &-danger {
96
+ color: #fff;
97
+ }
98
+
99
+ &-primary {
100
+ &, > th, > td {
101
+ background-color: $primary;
102
+ }
103
+ }
104
+
105
+ &-secondary {
106
+ &, > th, > td {
107
+ background-color: $secondary;
108
+ }
109
+ }
110
+
111
+ &-light {
112
+ &, > th, > td {
113
+ background-color: $light;
114
+ }
115
+ }
116
+
117
+ &-dark {
118
+ &, > th, > td {
119
+ background-color: $dark;
120
+ }
121
+ }
122
+
123
+ &-success {
124
+ &, > th, > td {
125
+ background-color: $success;
126
+ }
127
+ }
128
+
129
+ &-info {
130
+ &, > th, > td {
131
+ background-color: $info;
132
+ }
133
+ }
134
+
135
+ &-danger {
136
+ &, > th, > td {
137
+ background-color: $danger;
138
+ }
139
+ }
140
+
141
+ &-warning {
142
+ &, > th, > td {
143
+ background-color: $warning;
144
+ }
145
+ }
146
+
147
+ &-active {
148
+ &, > th, > td {
149
+ background-color: $table-active-bg;
150
+ }
151
+ }
152
+
153
+ &-hover {
154
+
155
+ .table-primary:hover {
156
+ &, > th, > td {
157
+ background-color: darken($primary, 5%);
158
+ }
159
+ }
160
+
161
+ .table-secondary:hover {
162
+ &, > th, > td {
163
+ background-color: darken($secondary, 5%);
164
+ }
165
+ }
166
+
167
+ .table-light:hover {
168
+ &, > th, > td {
169
+ background-color: darken($light, 5%);
170
+ }
171
+ }
172
+
173
+ .table-dark:hover {
174
+ &, > th, > td {
175
+ background-color: darken($dark, 5%);
176
+ }
177
+ }
178
+
179
+ .table-success:hover {
180
+ &, > th, > td {
181
+ background-color: darken($success, 5%);
182
+ }
183
+ }
184
+
185
+ .table-info:hover {
186
+ &, > th, > td {
187
+ background-color: darken($info, 5%);
188
+ }
189
+ }
190
+
191
+ .table-danger:hover {
192
+ &, > th, > td {
193
+ background-color: darken($danger, 5%);
194
+ }
195
+ }
196
+
197
+ .table-warning:hover {
198
+ &, > th, > td {
199
+ background-color: darken($warning, 5%);
200
+ }
201
+ }
202
+
203
+ .table-active:hover {
204
+ &, > th, > td {
205
+ background-color: $table-active-bg;
206
+ }
207
+ }
208
+ }
209
+
210
+ .thead-dark th {
211
+ background-color: $primary;
212
+ border-color: $table-border-color;
213
+ font-family: $headings-font-family;
214
+ }
215
+ }
216
+
217
+ // Forms =======================================================================
218
+
219
+ legend {
220
+ font-family: $headings-font-family;
221
+ }
222
+
223
+ // Navs ========================================================================
224
+
225
+ .dropdown-menu {
226
+ font-family: $font-family-sans-serif;
227
+ }
228
+
229
+ .breadcrumb {
230
+ a {
231
+ color: $navbar-dark-color;
232
+ }
233
+
234
+ a:hover {
235
+ color: $white;
236
+ text-decoration: none;
237
+ }
238
+ }
239
+
240
+ // Indicators ==================================================================
241
+
242
+ .alert {
243
+ color: $white;
244
+
245
+ h1, h2, h3, h4, h5, h6 {
246
+ color: inherit;
247
+ }
248
+
249
+ a,
250
+ .alert-link {
251
+ color: $white;
252
+ }
253
+
254
+ &-primary {
255
+ &, > th, > td {
256
+ background-color: $primary;
257
+ }
258
+ }
259
+
260
+ &-secondary {
261
+ &, > th, > td {
262
+ background-color: $secondary;
263
+ }
264
+ }
265
+
266
+ &-success {
267
+ &, > th, > td {
268
+ background-color: $success;
269
+ }
270
+ }
271
+
272
+ &-info {
273
+ &, > th, > td {
274
+ background-color: $info;
275
+ }
276
+ }
277
+
278
+ &-danger {
279
+ &, > th, > td {
280
+ background-color: $danger;
281
+ }
282
+ }
283
+
284
+ &-warning {
285
+ &, > th, > td {
286
+ background-color: $warning;
287
+ }
288
+ }
289
+
290
+ &-dark {
291
+ &, > th, > td {
292
+ background-color: $dark;
293
+ }
294
+ }
295
+
296
+ &-light {
297
+ &, > th, > td {
298
+ background-color: $light;
299
+ }
300
+ }
301
+
302
+ &-light {
303
+ &,
304
+ & a:not(.btn),
305
+ & .alert-link {
306
+ color: $body-color;
307
+ }
308
+ }
309
+ }
310
+
311
+ .badge {
312
+ color: $white;
313
+
314
+ &-light {
315
+ color: $gray-700;
316
+ }
317
+ }
318
+
319
+ // Progress bars ===============================================================
320
+
321
+ // Containers ==================================================================
322
+
323
+ .card,
324
+ .list-group-item {
325
+ h1, h2, h3, h4, h5, h6 {
326
+ color: inherit;
327
+ }
328
+ }
329
+
330
+ .logo-icon {
331
+ color: $gray-800;
332
+ }