jekyll-theme-material-docs 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +20 -0
- data/README.md +46 -0
- data/_includes/content-table.html +29 -0
- data/_includes/content.html +2 -0
- data/_includes/footer.html +28 -0
- data/_includes/github-icon.html +6 -0
- data/_includes/google-analytics.html +14 -0
- data/_includes/head.html +14 -0
- data/_includes/hero.html +16 -0
- data/_includes/license.html +13 -0
- data/_includes/made-with-love.html +9 -0
- data/_includes/styles.html +6 -0
- data/_includes/top-bar.html +34 -0
- data/_includes/twitter-icon.html +10 -0
- data/_layouts/compress.html +10 -0
- data/_layouts/default.html +12 -0
- data/_layouts/home.html +12 -0
- data/_layouts/page.html +24 -0
- data/_sass/_code.scss +24 -0
- data/_sass/_hero.scss +11 -0
- data/_sass/_layout.scss +12 -0
- data/_sass/_text.scss +3 -0
- data/_sass/_theme.scss +3 -0
- data/_sass/main.scss +1 -0
- metadata +109 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 1bb6aca407aee9a966de974aa8517f6b77bd733e9a7151b09538913c3af034c2
|
|
4
|
+
data.tar.gz: 5c3144420f2cde3c07a8e8226a596155541e45ce561e4ec1b429de325368557a
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: e33369c4a29bc89cd366d32a15b62b87d806c38c473c2fc0507c5fc3476d5cd4f6e66b0ed4475f5215f6447c5df1b36cfd4fd7c6535ab08cbd23f4ff4fb2803a
|
|
7
|
+
data.tar.gz: 91c8247265903209f153d8787a6a234e3867da3d0637ab03bacdf2086fc1c3903a686bebfb1042b97a7afce6755140cc65a28f9db24f51ae0277c929d7db7843
|
data/LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020 Fernando Pasik
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
7
|
+
the Software without restriction, including without limitation the rights to
|
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
10
|
+
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, FITNESS
|
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Material Docs
|
|
2
|
+
|
|
3
|
+
Jekyll theme built with material web components
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
### Via remote theme
|
|
8
|
+
|
|
9
|
+
Add this line to your Jekyll site's `_config.yml`:
|
|
10
|
+
|
|
11
|
+
```yaml
|
|
12
|
+
remote_theme: fernandopasik/jekyll-theme-material-docs
|
|
13
|
+
|
|
14
|
+
plugins:
|
|
15
|
+
- jekyll-remote-theme
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
### Via gems
|
|
19
|
+
|
|
20
|
+
Add this line to your Jekyll site's `Gemfile`:
|
|
21
|
+
|
|
22
|
+
```ruby
|
|
23
|
+
gem "jekyll-theme-material-docs"
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
And add this line to your Jekyll site's `_config.yml`:
|
|
27
|
+
|
|
28
|
+
```yaml
|
|
29
|
+
theme: jekyll-theme-material-docs
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
And then execute:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
$ bundle
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Or install it yourself as:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
$ gem install jekyll-theme-material-docs
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## License
|
|
45
|
+
|
|
46
|
+
MIT (c) 2020 [Fernando Pasik](https://fernandopasik.com)
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<nav>
|
|
2
|
+
<ul class="mdc-list mdc-list-group">
|
|
3
|
+
{% for item in site.content_table %} {% if item.url %}
|
|
4
|
+
<li>
|
|
5
|
+
<a class="mdc-list-item" href="{{ item.url | escape | relative_url }}">
|
|
6
|
+
<span class="mdc-list-item__ripple"></span>
|
|
7
|
+
<span class="mdc-list-item__text">{{ item.title }}</span>
|
|
8
|
+
</a>
|
|
9
|
+
</li>
|
|
10
|
+
{% else %}
|
|
11
|
+
<li class="mdc-list-group__subheader">
|
|
12
|
+
<p class="mdc-typography--headline6">{{ item.title }}</p>
|
|
13
|
+
|
|
14
|
+
{% if item.links %}
|
|
15
|
+
<ul class="mdc-list">
|
|
16
|
+
{% for subitem in item.links %}
|
|
17
|
+
<li>
|
|
18
|
+
<a class="mdc-list-item" href="{{ subitem.url | escape | relative_url }}">
|
|
19
|
+
<span class="mdc-list-item__ripple"></span>
|
|
20
|
+
<span class="mdc-list-item__text">{{ subitem.title }}</span>
|
|
21
|
+
</a>
|
|
22
|
+
</li>
|
|
23
|
+
{% endfor %}
|
|
24
|
+
</ul>
|
|
25
|
+
{% endif %}
|
|
26
|
+
</li>
|
|
27
|
+
{% endif %} {% endfor %}
|
|
28
|
+
</ul>
|
|
29
|
+
</nav>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<div class="mdc-layout-grid text-center grid-container">
|
|
2
|
+
<p>
|
|
3
|
+
{% if site.twitter %}
|
|
4
|
+
<a
|
|
5
|
+
href="https://twitter.com/{{ site.twitter | escape }}"
|
|
6
|
+
class="mdc-icon-button"
|
|
7
|
+
aria-label="{{ site.title }} Twitter Link"
|
|
8
|
+
>
|
|
9
|
+
{% include twitter-icon.html %}
|
|
10
|
+
</a>
|
|
11
|
+
{% endif %}
|
|
12
|
+
<a
|
|
13
|
+
href="{{ site.github.repository_url }}"
|
|
14
|
+
class="mdc-icon-button"
|
|
15
|
+
aria-label="{{ site.title }} Github Repository Link"
|
|
16
|
+
>
|
|
17
|
+
{% include github-icon.html %}
|
|
18
|
+
</a>
|
|
19
|
+
</p>
|
|
20
|
+
<p>
|
|
21
|
+
{% include made-with-love.html %}
|
|
22
|
+
</p>
|
|
23
|
+
{%- if site.github.license -%}
|
|
24
|
+
<p>
|
|
25
|
+
{% include license.html %}
|
|
26
|
+
</p>
|
|
27
|
+
{%- endif -%}
|
|
28
|
+
</div>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg height="32" width="32" viewBox="0 0 16 16" aria-hidden="true">
|
|
2
|
+
<path
|
|
3
|
+
fill-rule="evenodd"
|
|
4
|
+
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"
|
|
5
|
+
></path>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{%- if jekyll.environment == 'production' and site.google_analytics -%}
|
|
2
|
+
<script
|
|
3
|
+
async
|
|
4
|
+
src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"
|
|
5
|
+
></script>
|
|
6
|
+
<script>
|
|
7
|
+
window.dataLayer = window.dataLayer || [];
|
|
8
|
+
function gtag() {
|
|
9
|
+
dataLayer.push(arguments);
|
|
10
|
+
}
|
|
11
|
+
gtag('js', new Date());
|
|
12
|
+
gtag('config', '{{ site.google_analytics }}');
|
|
13
|
+
</script>
|
|
14
|
+
{%- endif -%}
|
data/_includes/head.html
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<head>
|
|
2
|
+
<meta charset="utf-8" />
|
|
3
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
4
|
+
|
|
5
|
+
<link rel="stylesheet" href="https://unpkg.com/normalize.css" />
|
|
6
|
+
<link
|
|
7
|
+
rel="stylesheet"
|
|
8
|
+
href="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.css"
|
|
9
|
+
/>
|
|
10
|
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto+Mono" />
|
|
11
|
+
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
|
|
12
|
+
|
|
13
|
+
{%- seo -%} {% include styles.html %} {% include google-analytics.html %}
|
|
14
|
+
</head>
|
data/_includes/hero.html
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<div class="hero mdc-theme--on-primary mdc-theme--primary-bg">
|
|
2
|
+
<div class="mdc-layout-grid grid-container">
|
|
3
|
+
<h1 class="mdc-typography--headline3">{{ site.title }}</h1>
|
|
4
|
+
<p class="mdc-typography--headline5">{{ site.description }}</p>
|
|
5
|
+
|
|
6
|
+
<p class="hero-actions">
|
|
7
|
+
<a
|
|
8
|
+
href="{{ 'getting-started' | relative_url }}"
|
|
9
|
+
class="mdc-button mdc-button--outlined mdc-theme--on-primary"
|
|
10
|
+
>
|
|
11
|
+
<span class="mdc-button__ripple"></span>
|
|
12
|
+
<span class="mdc-button__label">Get Started</span>
|
|
13
|
+
</a>
|
|
14
|
+
</p>
|
|
15
|
+
</div>
|
|
16
|
+
</div>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{% assign repo=site.github.public_repositories | where:"name", site.github.project_title %} {%
|
|
2
|
+
assign start_year=repo[0].created_at | slice: 0, 4 %} {% assign end_year=repo[0].updated_at | slice:
|
|
3
|
+
0, 4 %} {% if end_year == start_year %} {% assign year=start_year %}{% else %} {% assign
|
|
4
|
+
year=start_year | append: ' - ' | append: end_year %}{% endif %}
|
|
5
|
+
<span>
|
|
6
|
+
© {{ year }} under the terms of the
|
|
7
|
+
<a
|
|
8
|
+
href="{{ site.github.repository_url }}/blob/master/LICENSE"
|
|
9
|
+
class="mdc-theme--text-primary-on-background"
|
|
10
|
+
>
|
|
11
|
+
{{ site.github.license.name }}
|
|
12
|
+
</a>
|
|
13
|
+
</span>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<nav class="mdc-top-app-bar mdc-top-app-bar--fixed">
|
|
2
|
+
<div class="mdc-top-app-bar__row">
|
|
3
|
+
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-start">
|
|
4
|
+
<a href="{{ '/' | relative_url }}" class="mdc-top-app-bar__title mdc-theme--on-primary">
|
|
5
|
+
{{ site.title }}
|
|
6
|
+
</a>
|
|
7
|
+
</section>
|
|
8
|
+
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-end" role="toolbar">
|
|
9
|
+
{% for item in site.main_nav %}
|
|
10
|
+
<a
|
|
11
|
+
href="{{ site.github.url }}{{ item.url | escape | relative_url }}"
|
|
12
|
+
class="mdc-top-app-bar__action-item mdc-button"
|
|
13
|
+
>
|
|
14
|
+
{{ item.title | escape }}
|
|
15
|
+
</a>
|
|
16
|
+
{% endfor %} {% if site.twitter %}
|
|
17
|
+
<a
|
|
18
|
+
href="https://twitter.com/{{ site.twitter | escape }}"
|
|
19
|
+
class="mdc-top-app-bar__action-item mdc-icon-button"
|
|
20
|
+
aria-label="{{ site.title }} Twitter Link"
|
|
21
|
+
>
|
|
22
|
+
{% include twitter-icon.html %}
|
|
23
|
+
</a>
|
|
24
|
+
{% endif %}
|
|
25
|
+
<a
|
|
26
|
+
href="{{ site.github.repository_url }}"
|
|
27
|
+
class="mdc-top-app-bar__action-item mdc-icon-button"
|
|
28
|
+
aria-label="{{ site.title }} Github Repository Link"
|
|
29
|
+
>
|
|
30
|
+
{% include github-icon.html %}
|
|
31
|
+
</a>
|
|
32
|
+
</section>
|
|
33
|
+
</div>
|
|
34
|
+
</nav>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg height="32" width="32" viewBox="0 0 400 400" aria-hidden="true">
|
|
2
|
+
<path
|
|
3
|
+
d="M400,200c0,110.5-89.5,200-200,200S0,310.5,0,200S89.5,0,200,0S400,89.5,400,200z M163.4,305.5
|
|
4
|
+
c88.7,0,137.2-73.5,137.2-137.2c0-2.1,0-4.2-0.1-6.2c9.4-6.8,17.6-15.3,24.1-25c-8.6,3.8-17.9,6.4-27.7,7.6
|
|
5
|
+
c10-6,17.6-15.4,21.2-26.7c-9.3,5.5-19.6,9.5-30.6,11.7c-8.8-9.4-21.3-15.2-35.2-15.2c-26.6,0-48.2,21.6-48.2,48.2
|
|
6
|
+
c0,3.8,0.4,7.5,1.3,11c-40.1-2-75.6-21.2-99.4-50.4c-4.1,7.1-6.5,15.4-6.5,24.2c0,16.7,8.5,31.5,21.5,40.1c-7.9-0.2-15.3-2.4-21.8-6
|
|
7
|
+
c0,0.2,0,0.4,0,0.6c0,23.4,16.6,42.8,38.7,47.3c-4,1.1-8.3,1.7-12.7,1.7c-3.1,0-6.1-0.3-9.1-0.9c6.1,19.2,23.9,33.1,45,33.5
|
|
8
|
+
c-16.5,12.9-37.3,20.6-59.9,20.6c-3.9,0-7.7-0.2-11.5-0.7C110.8,297.5,136.2,305.5,163.4,305.5"
|
|
9
|
+
/>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
# Jekyll layout that compresses HTML
|
|
3
|
+
# v3.1.0
|
|
4
|
+
# http://jch.penibelst.de/
|
|
5
|
+
# © 2014–2015 Anatol Broder
|
|
6
|
+
# MIT License
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
{% capture _LINE_FEED %}
|
|
10
|
+
{% endcapture %}{% if site.compress_html.ignore.envs contains jekyll.environment or site.compress_html.ignore.envs == "all" %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}</{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% for _element in site.compress_html.startings %}{% capture _start %}<{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _start %}{% endfor %}{% if _profile and site.compress_html.startings %}{% assign _profile_startings = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "<!-- -->" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% capture _comment_befores %}.{{ _content }}{% endcapture %}{% assign _comment_befores = _comment_befores | split: _comments.first %}{% for _comment_before in _comment_befores %}{% if forloop.first %}{% continue %}{% endif %}{% capture _comment_outside %}{% if _carry %}{{ _comments.first }}{% endif %}{{ _comment_before }}{% endcapture %}{% capture _comment %}{% unless _carry %}{{ _comments.first }}{% endunless %}{{ _comment_outside | split: _comments.last | first }}{% if _comment_outside contains _comments.last %}{{ _comments.last }}{% assign _carry = false %}{% else %}{% assign _carry = true %}{% endif %}{% endcapture %}{% assign _content = _content | remove_first: _comment %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% assign _pre_befores = _content | split: "<pre" %}{% assign _content = "" %}{% for _pre_before in _pre_befores %}{% assign _pres = _pre_before | split: "</pre>" %}{% assign _pres_after = "" %}{% if _pres.size != 0 %}{% if site.compress_html.blanklines %}{% assign _lines = _pres.last | split: _LINE_FEED %}{% capture _pres_after %}{% for _line in _lines %}{% assign _trimmed = _line | split: " " | join: " " %}{% if _trimmed != empty or forloop.last %}{% unless forloop.first %}{{ _LINE_FEED }}{% endunless %}{{ _line }}{% endif %}{% endfor %}{% endcapture %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% capture _content %}{{ _content }}{% if _pre_before contains "</pre>" %}<pre{{ _pres.first }}</pre>{% endif %}{% unless _pre_before contains "</pre>" and _pres.size == 1 %}{{ _pres_after }}{% endunless %}{% endcapture %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " <e;<e; </e>;</e>;</e> ;</e>" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %} <table id="compress_html_profile_{{ site.time | date: "%Y%m%d" }}" class="compress_html_profile"> <thead> <tr> <td>Step <td>Bytes <tbody> <tr> <td>raw <td>{{ content | size }}{% if _profile_endings %} <tr> <td>endings <td>{{ _profile_endings }}{% endif %}{% if _profile_startings %} <tr> <td>startings <td>{{ _profile_startings }}{% endif %}{% if _profile_comments %} <tr> <td>comments <td>{{ _profile_comments }}{% endif %}{% if _profile_collapse %} <tr> <td>collapse <td>{{ _profile_collapse }}{% endif %}{% if _profile_clippings %} <tr> <td>clippings <td>{{ _profile_clippings }}{% endif %} </table>{% endif %}{% endif %}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: compress
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
<!DOCTYPE html>
|
|
6
|
+
<html lang="{{ page.lang | default: site.lang | default: 'en' }}">
|
|
7
|
+
{%- include head.html -%}
|
|
8
|
+
|
|
9
|
+
<body class="mdc-typography mdc-typography--body1">
|
|
10
|
+
{{ content }} {% include footer.html %}
|
|
11
|
+
</body>
|
|
12
|
+
</html>
|
data/_layouts/home.html
ADDED
data/_layouts/page.html
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
<header>
|
|
6
|
+
{%- include top-bar.html -%}
|
|
7
|
+
</header>
|
|
8
|
+
|
|
9
|
+
<main class="main-content mdc-top-app-bar--fixed-adjust mdc-layout-grid grid-container">
|
|
10
|
+
<div class="mdc-layout-grid__inner">
|
|
11
|
+
<div
|
|
12
|
+
class="mdc-layout-grid__cell mdc-layout-grid__cell--span-4-phone mdc-layout-grid__cell--span-2-tablet mdc-layout-grid__cell--span-3-desktop"
|
|
13
|
+
>
|
|
14
|
+
<div class="position-sticky mdc-top-app-bar--fixed-adjust-relative">
|
|
15
|
+
{%- include content-table.html -%}
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
18
|
+
<div
|
|
19
|
+
class="mdc-layout-grid__cell mdc-layout-grid__cell--span-4-phone mdc-layout-grid__cell--span-6-tablet mdc-layout-grid__cell--span-9-desktop"
|
|
20
|
+
>
|
|
21
|
+
{%- include content.html -%}
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
</main>
|
data/_sass/_code.scss
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
code {
|
|
2
|
+
font-family: 'Roboto Mono', monospace;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
pre {
|
|
6
|
+
overflow: scroll;
|
|
7
|
+
tab-size: 2;
|
|
8
|
+
hyphens: none;
|
|
9
|
+
white-space: pre;
|
|
10
|
+
word-spacing: normal;
|
|
11
|
+
word-break: normal;
|
|
12
|
+
word-wrap: normal;
|
|
13
|
+
|
|
14
|
+
padding: 1em;
|
|
15
|
+
background: #212121;
|
|
16
|
+
border-radius: 0.2em;
|
|
17
|
+
border: 1px solid #121212;
|
|
18
|
+
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
|
|
19
|
+
|
|
20
|
+
code {
|
|
21
|
+
color: #efefef;
|
|
22
|
+
text-shadow: 0px 1px 0px #000;
|
|
23
|
+
}
|
|
24
|
+
}
|
data/_sass/_hero.scss
ADDED
data/_sass/_layout.scss
ADDED
data/_sass/_text.scss
ADDED
data/_sass/_theme.scss
ADDED
data/_sass/main.scss
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'theme', 'text', 'layout', 'hero', 'code';
|
metadata
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: jekyll-theme-material-docs
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Fernando Pasik
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2020-08-31 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: jekyll
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '4.1'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '4.1'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: jekyll-github-metadata
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 2.13.0
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: 2.13.0
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: jekyll-seo-tag
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '2.1'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '2.1'
|
|
55
|
+
description:
|
|
56
|
+
email:
|
|
57
|
+
executables: []
|
|
58
|
+
extensions: []
|
|
59
|
+
extra_rdoc_files: []
|
|
60
|
+
files:
|
|
61
|
+
- LICENSE
|
|
62
|
+
- README.md
|
|
63
|
+
- _includes/content-table.html
|
|
64
|
+
- _includes/content.html
|
|
65
|
+
- _includes/footer.html
|
|
66
|
+
- _includes/github-icon.html
|
|
67
|
+
- _includes/google-analytics.html
|
|
68
|
+
- _includes/head.html
|
|
69
|
+
- _includes/hero.html
|
|
70
|
+
- _includes/license.html
|
|
71
|
+
- _includes/made-with-love.html
|
|
72
|
+
- _includes/styles.html
|
|
73
|
+
- _includes/top-bar.html
|
|
74
|
+
- _includes/twitter-icon.html
|
|
75
|
+
- _layouts/compress.html
|
|
76
|
+
- _layouts/default.html
|
|
77
|
+
- _layouts/home.html
|
|
78
|
+
- _layouts/page.html
|
|
79
|
+
- _sass/_code.scss
|
|
80
|
+
- _sass/_hero.scss
|
|
81
|
+
- _sass/_layout.scss
|
|
82
|
+
- _sass/_text.scss
|
|
83
|
+
- _sass/_theme.scss
|
|
84
|
+
- _sass/main.scss
|
|
85
|
+
homepage: https://github.com/fernandopasik/jekyll-theme-material-docss
|
|
86
|
+
licenses:
|
|
87
|
+
- MIT
|
|
88
|
+
metadata:
|
|
89
|
+
plugin_type: theme
|
|
90
|
+
post_install_message:
|
|
91
|
+
rdoc_options: []
|
|
92
|
+
require_paths:
|
|
93
|
+
- lib
|
|
94
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
95
|
+
requirements:
|
|
96
|
+
- - ">="
|
|
97
|
+
- !ruby/object:Gem::Version
|
|
98
|
+
version: '0'
|
|
99
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - ">="
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '0'
|
|
104
|
+
requirements: []
|
|
105
|
+
rubygems_version: 3.1.2
|
|
106
|
+
signing_key:
|
|
107
|
+
specification_version: 4
|
|
108
|
+
summary: Jekyll theme built with material web components
|
|
109
|
+
test_files: []
|