sencilla 0.3.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c39912bf88eca188955d094906fb505cea62e7aac89212f3a3ced73b806ddc36
4
+ data.tar.gz: 42e60c38d9ad092414ac4ac6667d0d63d69d722f2fe22ec9a69508e4e36a5526
5
+ SHA512:
6
+ metadata.gz: 173cb07ed9a452158148b33e7361aee7491e123995919bc076c219540f6e26c414d1c9c3ac2e912dc400d8b846837779915838f157bba8993ad3bd49cb9cad01
7
+ data.tar.gz: d144c917c53c007e105dcd2aa50499fc294c95abeaf63716cdae6ccf3c7f470788203ae7a288802e89aec02ec62d37eeabfe40c9791c3461347c267782a8a2fc
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016-present Parker Moore and the minima contributors (upto Minima v2.5.1)
4
+ Copyright (c) 2020 Mohit Saharan
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in
14
+ all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ THE SOFTWARE.
@@ -0,0 +1,41 @@
1
+ # Sencilla
2
+
3
+ Sencilla (pronounced sen-si-ya) is a minimal Jekyll theme for personal websites.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your Jekyll site's `Gemfile`:
8
+
9
+ ```ruby
10
+ gem "sencilla"
11
+ ```
12
+
13
+ And add this line to your Jekyll site's `_config.yml`:
14
+
15
+ ```yaml
16
+ theme: sencilla
17
+ ```
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ Or install it yourself as:
24
+
25
+ $ gem install sencilla
26
+
27
+ ## Usage
28
+
29
+ Will be added soon.
30
+
31
+ ## Contributing
32
+
33
+ Bug reports and pull requests are welcome on GitHub at https://github.com/dyskun/sencilla/. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
34
+
35
+ ## License
36
+
37
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
38
+
39
+ ## Credits
40
+
41
+ Sencilla is a fork of [Minima](https://github.com/jekyll/minima) v2.5.1. I have incorporated the `tags.html` page from [beautiful-jekyll](https://github.com/daattali/beautiful-jekyll) and the grey color tones from [open-color](https://github.com/yeun/open-color) and [material.io](https://material.io).
@@ -0,0 +1,39 @@
1
+ title: Sencilla
2
+ author:
3
+ name: Jane Doe
4
+ email: janedoe@example.com
5
+ description: >- #this means to ignore newlines until "show_excerpts:"
6
+ Jekyll theme for personal websites.
7
+
8
+ url: ""
9
+
10
+ logo: /assets/img/site-logo
11
+
12
+ # Social Links will appear under the "Contact" link in the top navigation bar.
13
+ ## Uncomment the lines for which you want to add the social links.
14
+ ## Can't see your favorite social media platform? Please write me an email.
15
+
16
+ github: dyskun
17
+ linkedin: dyskun
18
+ #twitter:
19
+ #facebook:
20
+ #instagram:
21
+
22
+
23
+ # Exclude these files from production site
24
+ exclude:
25
+ - CHANGELOG.md
26
+ - Gemfile
27
+ - Gemfile.lock
28
+ - LICENSE
29
+ - README.md
30
+ - screenshot.png
31
+ - docs/
32
+
33
+ plugins:
34
+ - jekyll-feed
35
+ - jekyll-seo-tag
36
+ - jekyll-sitemap
37
+ - jekyll-paginate
38
+
39
+
@@ -0,0 +1,17 @@
1
+ <footer class="site-footer h-card">
2
+ <div class="nav-wrapper">
3
+ <div class="footer-col-wrapper">
4
+ <div class="footer-col footer-col-1">
5
+ <p>Copyright © 2020 {{ site.author.name }}</p>
6
+ </div>
7
+
8
+ <div class="footer-col footer-col-2">
9
+ <p>Subscribe to the <a href="/feed.xml">RSS</a> feed.</p>
10
+ </div>
11
+
12
+ <div class="footer-col footer-col-3">
13
+ <p>Powered by <a href="https://github.com/dyskun/sencilla">Sencilla</a>.</p>
14
+ </div>
15
+ </div>
16
+ </div>
17
+ </footer>
@@ -0,0 +1,9 @@
1
+ <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
2
+ <script>
3
+ window['ga-disable-{{ site.google_analytics }}'] = window.doNotTrack === "1" || navigator.doNotTrack === "1" || navigator.doNotTrack === "yes" || navigator.msDoNotTrack === "1";
4
+ window.dataLayer = window.dataLayer || [];
5
+ function gtag(){dataLayer.push(arguments);}
6
+ gtag('js', new Date());
7
+
8
+ gtag('config', '{{ site.google_analytics }}');
9
+ </script>
@@ -0,0 +1,17 @@
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/css/main.css">
7
+ {%- feed_meta -%}
8
+ {%- if jekyll.environment == 'production' and site.google_analytics -%}
9
+ {%- include google-analytics.html -%}
10
+ {%- endif -%}
11
+ <link href="https://use.fontawesome.com/releases/v5.14.0/css/all.css" rel="stylesheet">
12
+
13
+ {%- if site.favicon == "True" -%}
14
+ {%- include html_code.html -%}
15
+ {%- endif -%}
16
+
17
+ </head>
@@ -0,0 +1,46 @@
1
+ <header class="site-header" role="banner">
2
+
3
+ <div class="nav-wrapper">
4
+ {%- assign default_paths = site.pages | map: "path" -%}
5
+ {%- assign page_paths = site.header_pages | default: default_paths -%}
6
+ {%- if site.logo -%}
7
+ <a href="{{ "/" | relative_url }}"><img class="site-logo" src="{{ site.logo }}" alt="{{ site.title }} Logo"></a>
8
+ {%- else -%}
9
+ <a class="site-title" rel="author" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
10
+ {%- endif -%}
11
+
12
+ <nav class="site-nav">
13
+ <input type="checkbox" id="nav-trigger" class="nav-trigger" />
14
+ <label for="nav-trigger">
15
+ <span class="menu-icon">
16
+ <svg viewBox="0 0 18 15" width="18px" height="15px">
17
+ <path d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.032C17.335,0,18,0.665,18,1.484L18,1.484z M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.032C17.335,6.031,18,6.696,18,7.516L18,7.516z M18,13.516C18,14.335,17.335,15,16.516,15H1.484 C0.665,15,0,14.335,0,13.516l0,0c0-0.82,0.665-1.483,1.484-1.483h15.032C17.335,12.031,18,12.695,18,13.516L18,13.516z"/>
18
+ </svg>
19
+ </span>
20
+ </label>
21
+
22
+ <div class="trigger">
23
+ {%- for item in site.data.pages -%}
24
+ <div class="nav-items">
25
+ {%- if item.subitems -%}
26
+ <a class="nav-item-link">{{ item.navitem }}</a>
27
+ <div class="dropdown-content">
28
+ {%- for subitem in item.subitems -%}
29
+ <a class="nav-drop-link" href="{{ subitem.url | absolute_url }}">{{ subitem.subnavitem | escape }}</a>
30
+ {%- endfor -%}
31
+ </div>
32
+ {%- else -%}
33
+ <a class="nav-item-link" href="{{ item.url | absolute_url }}">{{ item.navitem | escape }}</a>
34
+ {%- endif -%}
35
+ </div>
36
+ {%- endfor -%}
37
+ <div class="nav-items">
38
+ <a>Contact</a>
39
+ <div class="dropdown-content">
40
+ {% include social.html %}
41
+ </div>
42
+ </div>
43
+ </div>
44
+ </nav>
45
+ </div>
46
+ </header>
@@ -0,0 +1,23 @@
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/css/main.css">
7
+ {%- feed_meta -%}
8
+ {%- if jekyll.environment == 'production' and site.google_analytics -%}
9
+ {%- include google-analytics.html -%}
10
+ {%- endif -%}
11
+ <link href="https://use.fontawesome.com/releases/v5.14.0/css/all.css" rel="stylesheet">
12
+
13
+ {%- if site.favicon == "True" -%}
14
+ {%- include html_code.html -%}
15
+ {%- endif -%}
16
+
17
+ <script type="text/javascript" async src="//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
18
+ </script>
19
+ <script type="text/x-mathjax-config">
20
+ MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
21
+ </script>
22
+
23
+ </head>
@@ -0,0 +1,24 @@
1
+ {%- if site.author.email -%}
2
+ <a class="nav-drop-link" href="mailto:{{ site.author.email }}"><i class="far fa-envelope"></i></a>
3
+ {%- endif -%}
4
+
5
+ {%- if site.github -%}
6
+ <a class="nav-drop-link" href="https://github.com/{{ site.github }}"><i class="fab fa-github"></i></a>
7
+ {%- endif -%}
8
+
9
+ {%- if site.twitter -%}
10
+ <a class="nav-drop-link" href="https://twitter.com/{{ site.twitter }}"><i class="fab fa-twitter"></i></a>
11
+ {%- endif -%}
12
+
13
+ {%- if site.facebook -%}
14
+ <a class="nav-drop-link" href="https://facebook.com/{{ site.facebook }}"><i class="fab fa-facebook"></i></a>
15
+ {%- endif -%}
16
+
17
+ {%- if site.instagram -%}
18
+ <a class="nav-drop-link" href="https://instagram.com/{{ site.instagram }}"><i class="fab fa-instagram"></i></a>
19
+ {%- endif -%}
20
+
21
+ {%- if site.linkedin -%}
22
+ <a class="nav-drop-link" href="https://linkedin.com/in/{{ site.linkedin }}"><i class="fab fa-linkedin"></i></a>
23
+ {%- endif -%}
24
+
@@ -0,0 +1,17 @@
1
+ <!doctype html>
2
+ <html>
3
+ {% include head.html %}
4
+
5
+ <body>
6
+ {% include header.html %}
7
+
8
+ <main class="page-content aria-label=Content">
9
+ <div class="wrapper">
10
+ {{ content }}
11
+ </div>
12
+ </main>
13
+
14
+ {% include footer.html %}
15
+
16
+ </body>
17
+ </html>
@@ -0,0 +1,22 @@
1
+ <!DOCTYPE html>
2
+
3
+ {%- include head.html -%}
4
+
5
+ <body>
6
+
7
+ {%- include header.html -%}
8
+
9
+ <main class="page-content" aria-label="Content">
10
+ <div class="wrapper">
11
+ <div style="float: right;" style="padding: 1rem;" style="border-radius: 50%;">
12
+ <img src = "{{ page.image }}" width="360" alt="Profile picture">
13
+ </div>
14
+ {{ content }}
15
+ </div>
16
+ </main>
17
+
18
+ {%- include footer.html -%}
19
+
20
+ </body>
21
+
22
+ </html>
@@ -0,0 +1,20 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
+
4
+ {%- include latex-head.html -%}
5
+
6
+ <body>
7
+
8
+ {%- include header.html -%}
9
+
10
+ <main class="page-content" aria-label="Content">
11
+ <div class="wrapper">
12
+ {{ content }}
13
+ </div>
14
+ </main>
15
+
16
+ {%- include footer.html -%}
17
+
18
+ </body>
19
+
20
+ </html>
@@ -0,0 +1,64 @@
1
+ ---
2
+ layout: latex-default
3
+ ---
4
+ <article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">
5
+
6
+ <header class="post-header">
7
+ <h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>
8
+ <p class="post-meta">
9
+ {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
10
+ Published -
11
+ <time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
12
+ {{ page.date | date: date_format }}
13
+ </time>
14
+ {%- if page.modified_date -%}
15
+ • Last updated -
16
+ {%- assign mdate = page.modified_date | date_to_xmlschema -%}
17
+ <time class="dt-modified" datetime="{{ mdate }}" itemprop="dateModified">
18
+ {{ mdate | date: date_format }}
19
+ </time>
20
+ {%- endif -%}
21
+ {%- if page.author -%}
22
+ • {% for author in page.author %}
23
+ <span itemprop="author" itemscope itemtype="http://schema.org/Person">
24
+ <span class="p-author h-card" itemprop="name">{{ author }}</span></span>
25
+ {%- if forloop.last == false %}, {% endif -%}
26
+ {% endfor %}
27
+ {%- endif -%}</p>
28
+ </header>
29
+
30
+ <div class="post-content e-content" itemprop="articleBody">
31
+ {{ content }}
32
+ </div>
33
+ {% if page.tags.size > 0 %}
34
+ <div class="blog-tags">
35
+ Tags:
36
+ {% if site.link-tags %}
37
+ {% for tag in page.tags %}
38
+ <a href="{{ '/tags' | relative_url }}#{{- tag -}}">{{- tag -}}</a>
39
+ {% endfor %}
40
+ {% else %}
41
+ {{ page.tags | join: ", " }}
42
+ {% endif %}
43
+ </div>
44
+ {% endif %}
45
+
46
+ <ul class="pagination">
47
+ {% if page.previous.url %}
48
+ <li class="pagination">
49
+ <a class="page-link" href="{{ page.previous.url | relative_url }}" data-toggle="tooltip" data-placement="top" title="{{page.previous.title}}">&larr; Previous Post</a>
50
+ </li>
51
+ {% endif %}
52
+ {% if page.next.url %}
53
+ <li class="pagination">
54
+ <a class="page-link" href="{{ page.next.url | relative_url }}" data-toggle="tooltip" data-placement="top" title="{{page.next.title}}">Next Post &rarr;</a>
55
+ </li>
56
+ {% endif %}
57
+ </ul>
58
+
59
+ {%- if site.disqus.shortname -%}
60
+ {%- include disqus_comments.html -%}
61
+ {%- endif -%}
62
+
63
+ <a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
64
+ </article>
@@ -0,0 +1,11 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <article class="post">
5
+ <header class="post-header">
6
+ <h1 style="text-align: center;" class="post-title">{{ page.title | escape }}</h1>
7
+ </header>
8
+ <div class="post-content">
9
+ {{ content }}
10
+ </div>
11
+ </article>
@@ -0,0 +1,69 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">
5
+
6
+ <header class="post-header">
7
+ <h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>
8
+ <p class="post-meta">
9
+ {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
10
+ <time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
11
+ {%- if page.time -%}
12
+ {{ page.time | date: "%H:%M %Z" }} {{ page.date | date: date_format }}
13
+ {%- else -%}
14
+ {{ page.date | date: date_format }}
15
+ {%- endif -%}
16
+ </time>
17
+ {%- if page.last_modified_at -%}
18
+ {%- assign mdate = page.last_modified_at | date_to_xmlschema -%}
19
+ <time class="dt-modified" datetime="{{ mdate }}" itemprop="dateModified">
20
+ ~ {{ mdate | date: date_format }}
21
+ </time>
22
+ {%- endif -%}
23
+ {% if page.category %}
24
+ • {{ page.category }}
25
+ {% endif %}
26
+ {% if page.tags.size > 0 %}
27
+ • Tags:
28
+ {% if site.link-tags %}
29
+ {% for tag in page.tags %}
30
+ <a href="{{ '/tags' | relative_url }}#{{- tag -}}">{{- tag -}}</a>
31
+ {% endfor %}
32
+ {% else %}
33
+ {{ page.tags | join: ", " }}
34
+ {% endif %}
35
+ {% endif %}
36
+ </p>
37
+ </header>
38
+ <div class="post-content e-content" itemprop="articleBody">
39
+ {{ content }}
40
+ </div>
41
+ <!--
42
+ <ul class="pagination">
43
+ {% if page.previous.url %}
44
+ <li class="pagination">
45
+ <a class="page-link" href="{{ page.previous.url | relative_url }}" data-toggle="tooltip" data-placement="top" title="{{page.previous.title}}">&larr; Previous Post</a>
46
+ </li>
47
+ {% endif %}
48
+ {% if page.next.url %}
49
+ <li class="pagination">
50
+ <a class="page-link" href="{{ page.next.url | relative_url }}" data-toggle="tooltip" data-placement="top" title="{{page.next.title}}">Next Post &rarr;</a>
51
+ </li>
52
+ {% endif %}
53
+ </ul>-->
54
+
55
+ <div class="pagination">
56
+ {% if page.previous.url %}
57
+ <a href="{{ page.previous.url | relative_url }}" data-toggle="tooltip" data-placement="top" title="{{page.previous.title}}" style="float: left;"><i class="fas fa-arrow-left"></i> Previous Post</a>
58
+ {% endif %}
59
+ {% if page.next.url %}
60
+ <a href="{{ page.next.url | relative_url }}" data-toggle="tooltip" data-placement="top" title="{{page.next.title}}" style="float: right;">Next Post <i class="fas fa-arrow-right"></i></a>
61
+ {% endif %}
62
+ </div>
63
+
64
+ {%- if site.disqus.shortname -%}
65
+ {%- include disqus_comments.html -%}
66
+ {%- endif -%}
67
+
68
+ <a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
69
+ </article>