steve-for-jekyll 1.2.1 → 1.2.3
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 +4 -4
 - data/404.html +9 -9
 - data/LICENSE.txt +21 -21
 - data/README.md +46 -46
 - data/_config.yml +1 -2
 - data/_includes/blog/custom-widgets.html +3 -3
 - data/_includes/blog/post.html +57 -57
 - data/_includes/blog/sidebar.html +42 -42
 - data/_includes/footer/custom-text.html +5 -5
 - data/_includes/footer/links.html +11 -11
 - data/_includes/footer.html +11 -11
 - data/_includes/head.html +9 -9
 - data/_includes/header/menu.html +12 -12
 - data/_includes/header.html +17 -17
 - data/_includes/post/comment-form.html +69 -69
 - data/_includes/post/comments.html +47 -47
 - data/_includes/search-form.html +13 -13
 - data/_layouts/archive.html +21 -21
 - data/_layouts/blog.html +9 -9
 - data/_layouts/default.html +18 -18
 - data/_layouts/home.html +23 -23
 - data/_layouts/page.html +15 -15
 - data/_layouts/post.html +115 -115
 - data/_sass/steve/_base.scss +269 -269
 - data/_sass/steve/_layout.scss +477 -472
 - data/_sass/steve/_syntax.scss +252 -252
 - data/_sass/steve-for-jekyll.scss +51 -51
 - data/assets/css/screen.scss +34 -34
 - data/assets/js/responsive-videos.js +79 -79
 - data/staticman.yml +30 -30
 - metadata +7 -35
 
| 
         @@ -1,79 +1,79 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            /*
         
     | 
| 
       2 
     | 
    
         
            -
            Responsive videos.
         
     | 
| 
       3 
     | 
    
         
            -
            */
         
     | 
| 
       4 
     | 
    
         
            -
            (function() {
         
     | 
| 
       5 
     | 
    
         
            -
            var _debounce, _each, _filter, _resize, iframes, isVideo, resizeVideos, videos;
         
     | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
            resizeVideos = function() {
         
     | 
| 
       8 
     | 
    
         
            -
              _each(videos, function(video) {
         
     | 
| 
       9 
     | 
    
         
            -
                var newWidth;
         
     | 
| 
       10 
     | 
    
         
            -
                newWidth = video.parentElement.offsetWidth;
         
     | 
| 
       11 
     | 
    
         
            -
                _resize(video, newWidth);
         
     | 
| 
       12 
     | 
    
         
            -
              });
         
     | 
| 
       13 
     | 
    
         
            -
            };
         
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
       15 
     | 
    
         
            -
            _each = function(items, action) {
         
     | 
| 
       16 
     | 
    
         
            -
              var i, len;
         
     | 
| 
       17 
     | 
    
         
            -
              i = 0;
         
     | 
| 
       18 
     | 
    
         
            -
              len = items.length;
         
     | 
| 
       19 
     | 
    
         
            -
              while (i < len) {
         
     | 
| 
       20 
     | 
    
         
            -
                action(items[i], i);
         
     | 
| 
       21 
     | 
    
         
            -
                i++;
         
     | 
| 
       22 
     | 
    
         
            -
              }
         
     | 
| 
       23 
     | 
    
         
            -
            };
         
     | 
| 
       24 
     | 
    
         
            -
             
     | 
| 
       25 
     | 
    
         
            -
            _filter = function(items, test) {
         
     | 
| 
       26 
     | 
    
         
            -
              var filtered, i, item;
         
     | 
| 
       27 
     | 
    
         
            -
              filtered = [];
         
     | 
| 
       28 
     | 
    
         
            -
              i = 0;
         
     | 
| 
       29 
     | 
    
         
            -
              while (i < items.length) {
         
     | 
| 
       30 
     | 
    
         
            -
                item = items[i];
         
     | 
| 
       31 
     | 
    
         
            -
                if (test(item, i)) {
         
     | 
| 
       32 
     | 
    
         
            -
                  filtered.push(item);
         
     | 
| 
       33 
     | 
    
         
            -
                }
         
     | 
| 
       34 
     | 
    
         
            -
                i++;
         
     | 
| 
       35 
     | 
    
         
            -
              }
         
     | 
| 
       36 
     | 
    
         
            -
              return filtered;
         
     | 
| 
       37 
     | 
    
         
            -
            };
         
     | 
| 
       38 
     | 
    
         
            -
             
     | 
| 
       39 
     | 
    
         
            -
            _resize = function(video, newWidth) {
         
     | 
| 
       40 
     | 
    
         
            -
              var ASPECT_RATIO, newHeight;
         
     | 
| 
       41 
     | 
    
         
            -
              ASPECT_RATIO = 9 / 16;
         
     | 
| 
       42 
     | 
    
         
            -
              newHeight = ASPECT_RATIO * newWidth;
         
     | 
| 
       43 
     | 
    
         
            -
              video.setAttribute('width', newWidth.toString());
         
     | 
| 
       44 
     | 
    
         
            -
              video.setAttribute('height', newHeight.toString());
         
     | 
| 
       45 
     | 
    
         
            -
            };
         
     | 
| 
       46 
     | 
    
         
            -
             
     | 
| 
       47 
     | 
    
         
            -
            _debounce = function(func, wait, immediate) {
         
     | 
| 
       48 
     | 
    
         
            -
              var timeout;
         
     | 
| 
       49 
     | 
    
         
            -
              timeout = void 0;
         
     | 
| 
       50 
     | 
    
         
            -
              return function() {
         
     | 
| 
       51 
     | 
    
         
            -
                var args, callNow, context, later;
         
     | 
| 
       52 
     | 
    
         
            -
                context = this;
         
     | 
| 
       53 
     | 
    
         
            -
                args = arguments;
         
     | 
| 
       54 
     | 
    
         
            -
                later = function() {
         
     | 
| 
       55 
     | 
    
         
            -
                  timeout = null;
         
     | 
| 
       56 
     | 
    
         
            -
                  if (!immediate) {
         
     | 
| 
       57 
     | 
    
         
            -
                    func.apply(context, args);
         
     | 
| 
       58 
     | 
    
         
            -
                  }
         
     | 
| 
       59 
     | 
    
         
            -
                };
         
     | 
| 
       60 
     | 
    
         
            -
                callNow = immediate && !timeout;
         
     | 
| 
       61 
     | 
    
         
            -
                clearTimeout(timeout);
         
     | 
| 
       62 
     | 
    
         
            -
                timeout = setTimeout(later, wait);
         
     | 
| 
       63 
     | 
    
         
            -
                if (callNow) {
         
     | 
| 
       64 
     | 
    
         
            -
                  func.apply(context, args);
         
     | 
| 
       65 
     | 
    
         
            -
                }
         
     | 
| 
       66 
     | 
    
         
            -
              };
         
     | 
| 
       67 
     | 
    
         
            -
            };
         
     | 
| 
       68 
     | 
    
         
            -
             
     | 
| 
       69 
     | 
    
         
            -
            iframes = document.getElementsByTagName('iframe');
         
     | 
| 
       70 
     | 
    
         
            -
             
     | 
| 
       71 
     | 
    
         
            -
            isVideo = /(youtube)|(vimeo)|(cloudup)|(spotify)|(twitch)/i;
         
     | 
| 
       72 
     | 
    
         
            -
             
     | 
| 
       73 
     | 
    
         
            -
            videos = _filter(iframes, function(iframe) {
         
     | 
| 
       74 
     | 
    
         
            -
              return isVideo.test(iframe.getAttribute('src'));
         
     | 
| 
       75 
     | 
    
         
            -
            });
         
     | 
| 
       76 
     | 
    
         
            -
             
     | 
| 
       77 
     | 
    
         
            -
            resizeVideos();
         
     | 
| 
       78 
     | 
    
         
            -
             
     | 
| 
       79 
     | 
    
         
            -
            }).call(this);
         
     | 
| 
      
 1 
     | 
    
         
            +
            /*
         
     | 
| 
      
 2 
     | 
    
         
            +
            Responsive videos.
         
     | 
| 
      
 3 
     | 
    
         
            +
            */
         
     | 
| 
      
 4 
     | 
    
         
            +
            (function() {
         
     | 
| 
      
 5 
     | 
    
         
            +
            var _debounce, _each, _filter, _resize, iframes, isVideo, resizeVideos, videos;
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            resizeVideos = function() {
         
     | 
| 
      
 8 
     | 
    
         
            +
              _each(videos, function(video) {
         
     | 
| 
      
 9 
     | 
    
         
            +
                var newWidth;
         
     | 
| 
      
 10 
     | 
    
         
            +
                newWidth = video.parentElement.offsetWidth;
         
     | 
| 
      
 11 
     | 
    
         
            +
                _resize(video, newWidth);
         
     | 
| 
      
 12 
     | 
    
         
            +
              });
         
     | 
| 
      
 13 
     | 
    
         
            +
            };
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            _each = function(items, action) {
         
     | 
| 
      
 16 
     | 
    
         
            +
              var i, len;
         
     | 
| 
      
 17 
     | 
    
         
            +
              i = 0;
         
     | 
| 
      
 18 
     | 
    
         
            +
              len = items.length;
         
     | 
| 
      
 19 
     | 
    
         
            +
              while (i < len) {
         
     | 
| 
      
 20 
     | 
    
         
            +
                action(items[i], i);
         
     | 
| 
      
 21 
     | 
    
         
            +
                i++;
         
     | 
| 
      
 22 
     | 
    
         
            +
              }
         
     | 
| 
      
 23 
     | 
    
         
            +
            };
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
            _filter = function(items, test) {
         
     | 
| 
      
 26 
     | 
    
         
            +
              var filtered, i, item;
         
     | 
| 
      
 27 
     | 
    
         
            +
              filtered = [];
         
     | 
| 
      
 28 
     | 
    
         
            +
              i = 0;
         
     | 
| 
      
 29 
     | 
    
         
            +
              while (i < items.length) {
         
     | 
| 
      
 30 
     | 
    
         
            +
                item = items[i];
         
     | 
| 
      
 31 
     | 
    
         
            +
                if (test(item, i)) {
         
     | 
| 
      
 32 
     | 
    
         
            +
                  filtered.push(item);
         
     | 
| 
      
 33 
     | 
    
         
            +
                }
         
     | 
| 
      
 34 
     | 
    
         
            +
                i++;
         
     | 
| 
      
 35 
     | 
    
         
            +
              }
         
     | 
| 
      
 36 
     | 
    
         
            +
              return filtered;
         
     | 
| 
      
 37 
     | 
    
         
            +
            };
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
            _resize = function(video, newWidth) {
         
     | 
| 
      
 40 
     | 
    
         
            +
              var ASPECT_RATIO, newHeight;
         
     | 
| 
      
 41 
     | 
    
         
            +
              ASPECT_RATIO = 9 / 16;
         
     | 
| 
      
 42 
     | 
    
         
            +
              newHeight = ASPECT_RATIO * newWidth;
         
     | 
| 
      
 43 
     | 
    
         
            +
              video.setAttribute('width', newWidth.toString());
         
     | 
| 
      
 44 
     | 
    
         
            +
              video.setAttribute('height', newHeight.toString());
         
     | 
| 
      
 45 
     | 
    
         
            +
            };
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
            _debounce = function(func, wait, immediate) {
         
     | 
| 
      
 48 
     | 
    
         
            +
              var timeout;
         
     | 
| 
      
 49 
     | 
    
         
            +
              timeout = void 0;
         
     | 
| 
      
 50 
     | 
    
         
            +
              return function() {
         
     | 
| 
      
 51 
     | 
    
         
            +
                var args, callNow, context, later;
         
     | 
| 
      
 52 
     | 
    
         
            +
                context = this;
         
     | 
| 
      
 53 
     | 
    
         
            +
                args = arguments;
         
     | 
| 
      
 54 
     | 
    
         
            +
                later = function() {
         
     | 
| 
      
 55 
     | 
    
         
            +
                  timeout = null;
         
     | 
| 
      
 56 
     | 
    
         
            +
                  if (!immediate) {
         
     | 
| 
      
 57 
     | 
    
         
            +
                    func.apply(context, args);
         
     | 
| 
      
 58 
     | 
    
         
            +
                  }
         
     | 
| 
      
 59 
     | 
    
         
            +
                };
         
     | 
| 
      
 60 
     | 
    
         
            +
                callNow = immediate && !timeout;
         
     | 
| 
      
 61 
     | 
    
         
            +
                clearTimeout(timeout);
         
     | 
| 
      
 62 
     | 
    
         
            +
                timeout = setTimeout(later, wait);
         
     | 
| 
      
 63 
     | 
    
         
            +
                if (callNow) {
         
     | 
| 
      
 64 
     | 
    
         
            +
                  func.apply(context, args);
         
     | 
| 
      
 65 
     | 
    
         
            +
                }
         
     | 
| 
      
 66 
     | 
    
         
            +
              };
         
     | 
| 
      
 67 
     | 
    
         
            +
            };
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
            iframes = document.getElementsByTagName('iframe');
         
     | 
| 
      
 70 
     | 
    
         
            +
             
     | 
| 
      
 71 
     | 
    
         
            +
            isVideo = /(youtube)|(vimeo)|(cloudup)|(spotify)|(twitch)/i;
         
     | 
| 
      
 72 
     | 
    
         
            +
             
     | 
| 
      
 73 
     | 
    
         
            +
            videos = _filter(iframes, function(iframe) {
         
     | 
| 
      
 74 
     | 
    
         
            +
              return isVideo.test(iframe.getAttribute('src'));
         
     | 
| 
      
 75 
     | 
    
         
            +
            });
         
     | 
| 
      
 76 
     | 
    
         
            +
             
     | 
| 
      
 77 
     | 
    
         
            +
            resizeVideos();
         
     | 
| 
      
 78 
     | 
    
         
            +
             
     | 
| 
      
 79 
     | 
    
         
            +
            }).call(this);
         
     | 
    
        data/staticman.yml
    CHANGED
    
    | 
         @@ -1,30 +1,30 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            comments:
         
     | 
| 
       2 
     | 
    
         
            -
              branch: main
         
     | 
| 
       3 
     | 
    
         
            -
              commitMessage: "Adds comment via Staticman"
         
     | 
| 
       4 
     | 
    
         
            -
              path: "_data/comments/{options.slug}"
         
     | 
| 
       5 
     | 
    
         
            -
              filename: "comment-{@timestamp}"
         
     | 
| 
       6 
     | 
    
         
            -
              format: yaml
         
     | 
| 
       7 
     | 
    
         
            -
              moderation: true
         
     | 
| 
       8 
     | 
    
         
            -
              allowedFields:
         
     | 
| 
       9 
     | 
    
         
            -
                - name
         
     | 
| 
       10 
     | 
    
         
            -
                - email
         
     | 
| 
       11 
     | 
    
         
            -
                - website
         
     | 
| 
       12 
     | 
    
         
            -
                - message
         
     | 
| 
       13 
     | 
    
         
            -
              generatedFields:
         
     | 
| 
       14 
     | 
    
         
            -
                date:
         
     | 
| 
       15 
     | 
    
         
            -
                  type: date
         
     | 
| 
       16 
     | 
    
         
            -
                  options:
         
     | 
| 
       17 
     | 
    
         
            -
                    format: timestamp-seconds
         
     | 
| 
       18 
     | 
    
         
            -
              requiredFields:
         
     | 
| 
       19 
     | 
    
         
            -
                - name
         
     | 
| 
       20 
     | 
    
         
            -
                - email
         
     | 
| 
       21 
     | 
    
         
            -
                - message
         
     | 
| 
       22 
     | 
    
         
            -
              transforms:
         
     | 
| 
       23 
     | 
    
         
            -
                email: md5
         
     | 
| 
       24 
     | 
    
         
            -
              akismet:
         
     | 
| 
       25 
     | 
    
         
            -
                enabled: true
         
     | 
| 
       26 
     | 
    
         
            -
                author: name
         
     | 
| 
       27 
     | 
    
         
            -
                authorEmail: email
         
     | 
| 
       28 
     | 
    
         
            -
                authorUrl: website
         
     | 
| 
       29 
     | 
    
         
            -
                content: message
         
     | 
| 
       30 
     | 
    
         
            -
                type: comment
         
     | 
| 
      
 1 
     | 
    
         
            +
            comments:
         
     | 
| 
      
 2 
     | 
    
         
            +
              branch: main
         
     | 
| 
      
 3 
     | 
    
         
            +
              commitMessage: "Adds comment via Staticman"
         
     | 
| 
      
 4 
     | 
    
         
            +
              path: "_data/comments/{options.slug}"
         
     | 
| 
      
 5 
     | 
    
         
            +
              filename: "comment-{@timestamp}"
         
     | 
| 
      
 6 
     | 
    
         
            +
              format: yaml
         
     | 
| 
      
 7 
     | 
    
         
            +
              moderation: true
         
     | 
| 
      
 8 
     | 
    
         
            +
              allowedFields:
         
     | 
| 
      
 9 
     | 
    
         
            +
                - name
         
     | 
| 
      
 10 
     | 
    
         
            +
                - email
         
     | 
| 
      
 11 
     | 
    
         
            +
                - website
         
     | 
| 
      
 12 
     | 
    
         
            +
                - message
         
     | 
| 
      
 13 
     | 
    
         
            +
              generatedFields:
         
     | 
| 
      
 14 
     | 
    
         
            +
                date:
         
     | 
| 
      
 15 
     | 
    
         
            +
                  type: date
         
     | 
| 
      
 16 
     | 
    
         
            +
                  options:
         
     | 
| 
      
 17 
     | 
    
         
            +
                    format: timestamp-seconds
         
     | 
| 
      
 18 
     | 
    
         
            +
              requiredFields:
         
     | 
| 
      
 19 
     | 
    
         
            +
                - name
         
     | 
| 
      
 20 
     | 
    
         
            +
                - email
         
     | 
| 
      
 21 
     | 
    
         
            +
                - message
         
     | 
| 
      
 22 
     | 
    
         
            +
              transforms:
         
     | 
| 
      
 23 
     | 
    
         
            +
                email: md5
         
     | 
| 
      
 24 
     | 
    
         
            +
              akismet:
         
     | 
| 
      
 25 
     | 
    
         
            +
                enabled: true
         
     | 
| 
      
 26 
     | 
    
         
            +
                author: name
         
     | 
| 
      
 27 
     | 
    
         
            +
                authorEmail: email
         
     | 
| 
      
 28 
     | 
    
         
            +
                authorUrl: website
         
     | 
| 
      
 29 
     | 
    
         
            +
                content: message
         
     | 
| 
      
 30 
     | 
    
         
            +
                type: comment
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: steve-for-jekyll
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 1.2. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.2.3
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Arthur Freitas
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire:
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date:  
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2023-04-26 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: jekyll
         
     | 
| 
         @@ -16,42 +16,28 @@ dependencies: 
     | 
|
| 
       16 
16 
     | 
    
         
             
                requirements:
         
     | 
| 
       17 
17 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       18 
18 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       19 
     | 
    
         
            -
                    version: '4. 
     | 
| 
      
 19 
     | 
    
         
            +
                    version: '4.3'
         
     | 
| 
       20 
20 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       21 
21 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       22 
22 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       23 
23 
     | 
    
         
             
                requirements:
         
     | 
| 
       24 
24 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       25 
25 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       26 
     | 
    
         
            -
                    version: '4. 
     | 
| 
       27 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency
         
     | 
| 
       28 
     | 
    
         
            -
              name: webrick
         
     | 
| 
       29 
     | 
    
         
            -
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       30 
     | 
    
         
            -
                requirements:
         
     | 
| 
       31 
     | 
    
         
            -
                - - "~>"
         
     | 
| 
       32 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       33 
     | 
    
         
            -
                    version: '1.7'
         
     | 
| 
       34 
     | 
    
         
            -
              type: :runtime
         
     | 
| 
       35 
     | 
    
         
            -
              prerelease: false
         
     | 
| 
       36 
     | 
    
         
            -
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       37 
     | 
    
         
            -
                requirements:
         
     | 
| 
       38 
     | 
    
         
            -
                - - "~>"
         
     | 
| 
       39 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       40 
     | 
    
         
            -
                    version: '1.7'
         
     | 
| 
      
 26 
     | 
    
         
            +
                    version: '4.3'
         
     | 
| 
       41 
27 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       42 
28 
     | 
    
         
             
              name: jekyll-feed
         
     | 
| 
       43 
29 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       44 
30 
     | 
    
         
             
                requirements:
         
     | 
| 
       45 
31 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       46 
32 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       47 
     | 
    
         
            -
                    version: '0. 
     | 
| 
      
 33 
     | 
    
         
            +
                    version: '0.17'
         
     | 
| 
       48 
34 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       49 
35 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       50 
36 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       51 
37 
     | 
    
         
             
                requirements:
         
     | 
| 
       52 
38 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       53 
39 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       54 
     | 
    
         
            -
                    version: '0. 
     | 
| 
      
 40 
     | 
    
         
            +
                    version: '0.17'
         
     | 
| 
       55 
41 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       56 
42 
     | 
    
         
             
              name: jekyll-seo-tag
         
     | 
| 
       57 
43 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
         @@ -108,20 +94,6 @@ dependencies: 
     | 
|
| 
       108 
94 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       109 
95 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       110 
96 
     | 
    
         
             
                    version: '2.2'
         
     | 
| 
       111 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency
         
     | 
| 
       112 
     | 
    
         
            -
              name: jekyll-loading-lazy
         
     | 
| 
       113 
     | 
    
         
            -
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       114 
     | 
    
         
            -
                requirements:
         
     | 
| 
       115 
     | 
    
         
            -
                - - "~>"
         
     | 
| 
       116 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       117 
     | 
    
         
            -
                    version: '0.1'
         
     | 
| 
       118 
     | 
    
         
            -
              type: :runtime
         
     | 
| 
       119 
     | 
    
         
            -
              prerelease: false
         
     | 
| 
       120 
     | 
    
         
            -
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       121 
     | 
    
         
            -
                requirements:
         
     | 
| 
       122 
     | 
    
         
            -
                - - "~>"
         
     | 
| 
       123 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       124 
     | 
    
         
            -
                    version: '0.1'
         
     | 
| 
       125 
97 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       126 
98 
     | 
    
         
             
              name: bundler
         
     | 
| 
       127 
99 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
         @@ -191,7 +163,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       191 
163 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       192 
164 
     | 
    
         
             
                  version: '0'
         
     | 
| 
       193 
165 
     | 
    
         
             
            requirements: []
         
     | 
| 
       194 
     | 
    
         
            -
            rubygems_version: 3. 
     | 
| 
      
 166 
     | 
    
         
            +
            rubygems_version: 3.2.33
         
     | 
| 
       195 
167 
     | 
    
         
             
            signing_key:
         
     | 
| 
       196 
168 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       197 
169 
     | 
    
         
             
            summary: A charming and fun Jekyll theme for blogs.
         
     |