minimaless 0.0.1 → 0.0.2

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: 4b2e6814772cfeb990badaabdd0fa31d9dbf1a6d
4
- data.tar.gz: d4fea3d1a11e76356777f94fdca2d34dcd42b9d3
3
+ metadata.gz: 6b2e3c93ecf5b485506bf288b179d81fbdb2ecd4
4
+ data.tar.gz: 94d9df98626d1681d89477faea87d14cbe8e35df
5
5
  SHA512:
6
- metadata.gz: b0d57ca181ed4bbb5a18d82d858284cdd413be5c4e8ba1d3c7036654f7f301841a6a95959fa4b8f4e7cc0a66f39b14304a6f9786a1e49b0b902a6db8351be47b
7
- data.tar.gz: d5898a24b0f60e63748dba17d1b4252f0f55f22d86ff7644eda976ad37506945eda1b50fbe59977ae02e8d31b6b84860d06a037c445be6c810e81bec4f425116
6
+ metadata.gz: cb5931b2e842906b428c0c39ef2fc1c57611531e0aa470cb2362c4960e8977703fa76553ab6cd78c3de586da7c721030ef04626f86dd06a0e5bad5a3e3bb92c4
7
+ data.tar.gz: c8c056962c4e990ff0912833735b1b8aa62beb6cc24f7c1fe675c7708b3c74931e4b87ab06ad124cb14aa7e85aef7294a726dac1b38fe416f252d1e5d249c68f
data/README.md CHANGED
@@ -33,28 +33,30 @@ Refers to snippets of code within the `_includes` directory that can be inserted
33
33
  - `google-analytics.html` — Inserts Google Analytics module (active only in production environment).
34
34
  - `head.html` &mdash; Code-block that defines the `<head></head>` in *default* layout.
35
35
  - `header.html` &mdash; Defines the site's main header section. By default, pages with a defined `title` attribute will have links displayed here.
36
- - `icon-* files` &mdash; Inserts github and twitter ids with respective icons.
36
+ - `contact-icons.html` &mdash; Inserts social icons when you specify a social media site `*_username` in the config.
37
+ - You can also add an `.asc` file for a key icon to appear for users to download your GPG key file.
37
38
 
38
39
  ## Usage
39
40
 
40
41
  ### Customization
41
42
 
42
- To override the default structure and style of minima, simply create the concerned directory at the root of your site, copy the file you wish to customize to that directory, and then edit the file.
43
- e.g., to override the [`_includes/head.html `](_includes/head.html) file to specify a custom style path, create an `_includes` directory, copy `_includes/head.html` from minima gem folder to `<yoursite>/_includes` and start editing that file.
43
+ To override the default structure and style of minimaless, simply create the concerned directory at the root of your site, copy the file you wish to customize to that directory, and then edit the file.
44
+ e.g., to override the [`_includes/head.html `](_includes/head.html) file to specify a custom style path, create an `_includes` directory, copy `_includes/head.html` from minimaless gem folder to `<yoursite>/_includes` and start editing that file.
44
45
 
45
46
  The site's default CSS has now moved to a new place within the gem itself, [`assets/main.scss`](assets/main.scss). To **override the default CSS**, the file has to exist at your site source. Do either of the following:
46
47
  - Create a new instance of `main.scss` at site source.
47
48
  - Create a new file `main.scss` at `<your-site>/assets/`
48
49
  - Add the frontmatter dashes, and
49
- - Add `@import "minima";`, to `<your-site>/assets/main.scss`
50
+ - Add `@import "minimaless";`, to `<your-site>/assets/main.scss`
50
51
  - Add your custom CSS.
51
52
  - Download the file from this repo
52
53
  - Create a new file `main.scss` at `<your-site>/assets/`
53
54
  - Copy the contents at [assets/main.scss](assets/main.scss) onto the `main.scss` you just created, and edit away!
54
- - Copy directly from Minima 2.0 gem
55
- - Go to your local minima gem installation directory ( run `bundle show minima` to get the path to it ).
55
+ - Copy directly from Minimaless gem
56
+ - Go to your local minimaless gem installation directory ( run `bundle show minimaless` to get the path to it ).
56
57
  - Copy the `assets/` folder from there into the root of `<your-site>`
57
58
  - Change whatever values you want, inside `<your-site>/assets/main.scss`
59
+ - Edit index.md to change what appears on the site's splash/landing page.
58
60
 
59
61
  --
60
62
 
@@ -89,10 +91,9 @@ Google Analytics will only appear in production, i.e., `JEKYLL_ENV=production`
89
91
 
90
92
 
91
93
 
92
-
93
94
  ## Contributing
94
95
 
95
- Bug reports and pull requests are welcome on GitHub at https://github.com/jekyll/minima. 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.
96
+ Bug reports and pull requests are welcome on GitHub at https://github.com/brettinternet/minimaless.
96
97
 
97
98
  ## Development
98
99
 
@@ -47,11 +47,15 @@
47
47
  </li>
48
48
  {% endif %}
49
49
 
50
- {% if site.gpgkey_path %}
51
- <li>
52
- <a href="{{ site.gpgkey_path }}" download><i class="icon fa fa-key"></i></a>
53
- </li>
54
- {% endif %}
50
+ {% for file in site.static_files %}
51
+ {% if file.ext == 'asc' %}
52
+ <li>
53
+ <a href="{{ file.path | relative_url }}" download><i class="icon fa fa-key"></i></a>
54
+ </li>
55
+ {% break %}
56
+ {% endif %}
57
+ {% endfor %}
58
+
55
59
  <li>
56
60
  <a href="{{ "/feed.xml" | relative_url }}"><i class="icon fa fa-rss"></i></a>
57
61
  </li>
@@ -5,11 +5,14 @@
5
5
  {% assign page_paths = site.header_pages | default: default_paths %}
6
6
 
7
7
  <a class="site-title"href="{{ "/blog/" | relative_url }}">
8
- {% if site.files.logo_path %}
9
- <img class="site-logo" src="{{ site.files.logo_path }}" alt="site logo" />
10
- {% else %}
11
- {{ site.title | escape }}
12
- {% endif %}
8
+ {% for file in site.static_files %}
9
+ {% if file.basename == 'logo' %}
10
+ <img class="site-logo" src="{{ file.path | relative_url }}" alt="site logo" />
11
+ {% break %}
12
+ {% elsif forloop.last == true %}
13
+ {{ site.title | escape }}
14
+ {% endif %}
15
+ {% endfor %}
13
16
  </a>
14
17
 
15
18
  {% if page_paths %}
data/assets/logo.svg CHANGED
@@ -1,4 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="570" height="94" viewBox="0 0 570 94">
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="981" height="147" viewBox="0 0 981 147">
2
2
  <metadata><?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
3
3
  <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c138 79.159824, 2016/09/14-01:09:01 ">
4
4
  <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
@@ -35,5 +35,5 @@
35
35
  }
36
36
  </style>
37
37
  </defs>
38
- <path id="brett_gardiner" data-name="brett gardiner" class="cls-1" d="M28.418,17.535a17.458,17.458,0,0,0-9.632,2.441,20.369,20.369,0,0,0-5.848,5.664V0.055H-0.979V71.929H12.742V65.24a21.187,21.187,0,0,0,5.2,5.469q4.024,2.637,10.65,2.637,10.551,0,16.441-8.154t5.89-20.557q0-11.963-5.972-19.531T28.418,17.535h0ZM24.9,61.871q-6.253,0-9.3-4.492a19.714,19.714,0,0,1-3.052-11.328,25.64,25.64,0,0,1,1.477-9.473q2.855-6.885,10.487-6.885,7.532,0,10.338,7.031A25.576,25.576,0,0,1,36.326,46.1q0,7.08-3,11.426A9.652,9.652,0,0,1,24.9,61.871h0ZM83.5,17.437a15.287,15.287,0,0,0-10.156,3.271q-2.393,1.953-5.615,7.275V18.707H54.447V71.929H68.461V46.49q0-6.4,1.611-9.473,2.88-5.468,11.279-5.469,0.634,0,1.66.049t2.344,0.2V17.535q-0.928-.048-1.2-0.073T83.5,17.437h0Zm28.18,11.328a12.2,12.2,0,0,1,8.253,2.869q3.328,2.869,3.707,8.41H99.666a14.458,14.458,0,0,1,3.707-8.238q2.949-3.041,8.307-3.041h0Zm-0.006-11.475q-11.7,0-19.032,7.38T85.31,45.88q0,14.76,8.121,21.308a29.013,29.013,0,0,0,18.747,6.548q12.871,0,20.023-7.764,4.6-4.882,5.159-9.619H123.154a10.808,10.808,0,0,1-10.592,6.1,14.131,14.131,0,0,1-7.672-2q-5.243-3.223-5.566-11.23h38.763a68.063,68.063,0,0,0-.458-10.563,26.158,26.158,0,0,0-4.241-11,21.644,21.644,0,0,0-9.2-7.873,30.3,30.3,0,0,0-12.517-2.494h0Zm33.4,11.816V61.871q0,4.98,2.344,7.373Q151.034,73,160.9,72.662l6.592-.244v-10.4q-0.684.049-1.392,0.073t-1.343.025q-4.248,0-5.078-.806t-0.83-4.077V29.107h8.643V19.2h-8.643V4.351H145.078V19.2h-7.422v9.912h7.422Zm33.3,0V61.871q0,4.98,2.344,7.373Q184.336,73,194.2,72.662l6.592-.244v-10.4q-0.685.049-1.392,0.073t-1.343.025q-4.248,0-5.078-.806t-0.83-4.077V29.107h8.643V19.2h-8.643V4.351h-13.77V19.2h-7.421v9.912h7.421Zm63.983,31.4a10.142,10.142,0,0,1-10.115-6.738,20.691,20.691,0,0,1-1.555-8.252,24.5,24.5,0,0,1,1.459-9.033q2.77-6.885,10.065-6.885a10.394,10.394,0,0,1,8.533,3.955q3.185,3.955,3.185,11.523,0,8.057-3.355,11.743a10.685,10.685,0,0,1-8.217,3.686h0Zm-3.5-43.066q-10.826,0-16.727,8.081t-5.9,19.946q0,12.3,6.128,19.507t16.381,7.2q6.64,0,10.791-3.174a16.968,16.968,0,0,0,4.3-5.127v3.418q0,7.617-1.66,10.84-2.54,5.028-10.058,5.029-5.323,0-7.569-1.9a6.27,6.27,0,0,1-1.9-3.516H217.507A14.774,14.774,0,0,0,224.636,89.7q6.446,4,16.651,4,16.893,0,22.851-8.984,3.467-5.225,3.467-15.527V18.707H254.031v7.666a16.717,16.717,0,0,0-8.193-7.715,18.294,18.294,0,0,0-6.973-1.221h0Zm65.317,33.789q-0.149,6.983-3.991,9.619a14.545,14.545,0,0,1-8.4,2.637A7.628,7.628,0,0,1,286.9,61.9q-2.009-1.586-2.008-5.151a6.355,6.355,0,0,1,3.287-5.908,20.839,20.839,0,0,1,6.4-1.9l3.167-.586a22.822,22.822,0,0,0,3.737-.952,15.363,15.363,0,0,0,2.7-1.343v5.176ZM290.9,40.142q-8.117,1.025-12.3,3.418-7.624,4.395-7.624,14.209,0,7.569,4.739,11.694a17.628,17.628,0,0,0,12.008,4.126A20.187,20.187,0,0,0,297.943,71a28.709,28.709,0,0,0,6.679-5.322q0.147,1.807.391,3.223a15.381,15.381,0,0,0,.879,3.027h15.137V69.879a4.973,4.973,0,0,1-2.051-1.611,7.722,7.722,0,0,1-.83-3.711q-0.1-3.613-.1-6.152V33.99q0-9.619-6.816-13.086a33.934,33.934,0,0,0-15.595-3.467q-13.486,0-19.027,7.031a20.36,20.36,0,0,0-3.923,11.475h13.428A10.064,10.064,0,0,1,288.1,31.06q2.079-2.441,7.078-2.441a14.547,14.547,0,0,1,6.756,1.245q2.3,1.245,2.3,4.517,0,2.686-3,3.955a22,22,0,0,1-5.558,1.221Zm62.212-22.705a15.287,15.287,0,0,0-10.156,3.271q-2.393,1.953-5.615,7.275V18.707H324.062V71.929h14.013V46.49q0-6.4,1.612-9.473,2.88-5.468,11.279-5.469,0.635,0,1.66.049t2.344,0.2V17.535q-0.929-.048-1.2-0.073c-0.18-.016-0.4-0.024-0.66-0.024h0Zm25.639,0q-10.5,0-16.772,7.813t-6.275,21.435q0,11.817,6.372,19.36a19.778,19.778,0,0,0,15.7,7.544,19.059,19.059,0,0,0,9.473-2.148,19.627,19.627,0,0,0,6.787-6.885v7.373h13.526V0.055H393.45V25.445a16.905,16.905,0,0,0-6.1-5.884,17.167,17.167,0,0,0-8.594-2.124h0Zm3.027,44.434q-5.908,0-8.813-4.419t-2.9-11.792a21.381,21.381,0,0,1,2.856-11.45q2.856-4.614,8.96-4.614a10.616,10.616,0,0,1,7.031,2.539q4.932,4.2,4.932,13.965,0,6.983-3.076,11.377a10.275,10.275,0,0,1-8.985,4.395h0ZM426.515-.483H412.4V12.359h14.112V-0.483ZM412.4,71.929h14.112V18.707H412.4V71.929Zm49.062-54.492a17.521,17.521,0,0,0-10.843,3.223,23.61,23.61,0,0,0-5.057,5.908V18.8H432.089V71.929h13.916V43.121a20.764,20.764,0,0,1,1.357-8.105q2.618-6.006,9.646-6.006,5.718,0,7.755,4.1a14.872,14.872,0,0,1,1.115,6.445V71.929h14.258V36.09q0-10.009-5.227-14.331t-13.444-4.321h0Zm47.78,11.328a12.2,12.2,0,0,1,8.254,2.869q3.327,2.869,3.707,8.41H497.231a14.464,14.464,0,0,1,3.707-8.238q2.949-3.041,8.307-3.041h0Zm0-11.475q-11.7,0-19.032,7.38T482.876,45.88q0,14.76,8.121,21.308a29.013,29.013,0,0,0,18.747,6.548q12.873,0,20.024-7.764,4.6-4.882,5.159-9.619H520.719a10.808,10.808,0,0,1-10.591,6.1,14.134,14.134,0,0,1-7.673-2q-5.241-3.223-5.566-11.23h38.764a68.038,68.038,0,0,0-.459-10.563,26.157,26.157,0,0,0-4.24-11,21.656,21.656,0,0,0-9.2-7.873,30.3,30.3,0,0,0-12.517-2.494h0ZM567.6,17.437a15.287,15.287,0,0,0-10.156,3.271q-2.393,1.953-5.615,7.275V18.707H538.544V71.929h14.013V46.49q0-6.4,1.612-9.473,2.88-5.468,11.279-5.469,0.635,0,1.66.049t2.344,0.2V17.535q-0.928-.048-1.2-0.073c-0.18-.016-0.4-0.024-0.66-0.024h0Z"/>
38
+ <path id="minimaless" class="cls-1" d="M118.6,35.13a41.42,41.42,0,0,0-19.14,4.395q-8.107,4.395-13.574,13.77A31.259,31.259,0,0,0,76.7,40.5q-7.521-5.37-19.726-5.371-12.891,0-21,6.25Q31.389,44.9,26.215,53.2V37.669H-0.836v106.25H27.387V79.856q0-8.691,2.246-13.086,4.1-7.713,16.016-7.715,10.254,0,13.77,7.715,1.952,4.3,1.953,13.769v63.379H89.4V80.54a30.042,30.042,0,0,1,2.246-12.207q4.395-9.57,15.918-9.57,9.962,0,13.672,7.422a22.248,22.248,0,0,1,1.953,9.961v67.774H151.7l0.195-67.09a94.637,94.637,0,0,0-.976-15.723,30.6,30.6,0,0,0-6.055-13.672,30.959,30.959,0,0,0-12.4-9.57A37.077,37.077,0,0,0,118.6,35.13h0ZM194.1-.905H165.875V24.778H194.1V-0.905ZM165.875,143.919H194.1V37.474H165.875V143.919ZM268,34.934q-13.128,0-21.686,6.445Q241.546,44.994,236.2,53.2V37.669H209.246v106.25h27.832V86.3q0-9.863,2.714-16.211,5.235-12.012,19.292-12.012,11.438,0,15.51,8.2,2.231,4.493,2.23,12.891v64.746h28.515V72.239q0-20.018-10.454-28.662T268,34.934h0ZM347.831-.905H319.609V24.778h28.222V-0.905ZM319.609,143.919h28.222V37.474H319.609V143.919ZM481.729,35.13a41.418,41.418,0,0,0-19.14,4.395q-8.107,4.395-13.574,13.77a31.266,31.266,0,0,0-9.18-12.793q-7.521-5.37-19.727-5.371-12.89,0-21,6.25Q394.52,44.9,389.347,53.2V37.669H362.3v106.25h28.223V79.856q0-8.691,2.246-13.086,4.1-7.713,16.015-7.715,10.254,0,13.77,7.715,1.951,4.3,1.953,13.769v63.379H452.53V80.54a30.049,30.049,0,0,1,2.246-12.207q4.4-9.57,15.918-9.57,9.961,0,13.672,7.422a22.248,22.248,0,0,1,1.953,9.961v67.774h28.516l0.195-67.09a94.637,94.637,0,0,0-.976-15.723A30.6,30.6,0,0,0,508,47.434a30.959,30.959,0,0,0-12.4-9.57,37.077,37.077,0,0,0-13.868-2.734h0Zm110.065,67.382q-0.3,13.966-7.982,19.239a29.091,29.091,0,0,1-16.807,5.273,15.254,15.254,0,0,1-9.767-3.174q-4.017-3.172-4.017-10.3,0-8.007,6.575-11.817,3.885-2.245,12.793-3.808l6.336-1.172a45.636,45.636,0,0,0,7.474-1.9,30.793,30.793,0,0,0,5.395-2.686v10.351ZM565.233,80.345Q549,82.4,540.638,87.18,525.389,95.97,525.389,115.6q0,15.138,9.479,23.389t24.016,8.252a40.371,40.371,0,0,0,20.431-5.176,57.452,57.452,0,0,0,13.359-10.644q0.294,3.613.782,6.445a30.915,30.915,0,0,0,1.758,6.055h30.273v-4.1a9.952,9.952,0,0,1-4.1-3.223q-1.368-1.951-1.66-7.422-0.2-7.225-.2-12.3V68.04q0-19.238-13.632-26.172t-31.189-6.934q-26.974,0-38.056,14.063-6.965,8.986-7.846,22.949h26.856a20.136,20.136,0,0,1,3.959-9.766q4.157-4.882,14.156-4.883,8.909,0,13.512,2.49t4.6,9.033q0,5.372-6,7.91-3.347,1.465-11.116,2.441ZM664.264-.026H636.432V143.919h27.832V-0.026Zm63.489,57.617q9.851,0,16.507,5.739t7.414,16.82H703.725q1.515-10.4,7.414-16.476t16.614-6.082h0Zm-0.011-22.949q-23.4,0-38.064,14.76T675.014,91.819q0,29.518,16.243,42.616a58.025,58.025,0,0,0,37.494,13.1q25.745,0,40.046-15.527,9.195-9.765,10.318-19.239H750.7a23.391,23.391,0,0,1-5.729,7.324q-5.943,4.885-15.454,4.883a28.26,28.26,0,0,1-15.345-4q-10.484-6.444-11.132-22.46h77.527q0.206-13.79-.917-21.126a52.314,52.314,0,0,0-8.481-22.006A43.3,43.3,0,0,0,752.776,39.63a60.609,60.609,0,0,0-25.034-4.988h0ZM780,109.934q0,16.407,11.987,27t37.136,10.6q24.657,0,36.448-10.01t11.792-25.83a26.827,26.827,0,0,0-8.2-20.019q-8.3-7.91-24.933-11.816-24.948-5.468-29.058-7.715a7.261,7.261,0,0,1-4.114-6.934q0-3.809,3.868-6.641T827.9,55.735q11.065,0,15.67,5.664a16.464,16.464,0,0,1,3.035,8.5h27.832Q872.575,50.365,860,42.405T827.46,34.446q-21.041,0-32.639,10.6t-11.6,25.342q0,12.5,7.422,19.141,7.421,6.738,25.564,11.231,25.2,5.957,29.117,8.4a7.9,7.9,0,0,1,3.912,7.129q0,4.884-4.857,7.324t-13.1,2.442q-14.033,0-19.232-5.567-2.944-3.124-3.827-10.547H780Zm103.23,0q0,16.407,11.988,27t37.135,10.6q24.657,0,36.449-10.01t11.791-25.83a26.827,26.827,0,0,0-8.2-20.019q-8.3-7.91-24.932-11.816-24.948-5.468-29.059-7.715a7.261,7.261,0,0,1-4.114-6.934q0-3.809,3.868-6.641t12.975-2.832q11.064,0,15.669,5.664a16.455,16.455,0,0,1,3.035,8.5h27.832q-1.862-19.53-14.437-27.49T930.69,34.446q-21.041,0-32.638,10.6t-11.6,25.342q0,12.5,7.422,19.141,7.42,6.738,25.564,11.231,25.2,5.957,29.117,8.4a7.9,7.9,0,0,1,3.913,7.129q0,4.884-4.857,7.324t-13.1,2.442q-14.033,0-19.232-5.567-2.943-3.124-3.827-10.547H883.232Z"/>
39
39
  </svg>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minimaless
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - brettinternet
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-07-31 00:00:00.000000000 Z
11
+ date: 2017-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll