mgm-jekyll-bulma 0.1.0 → 0.1.1
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/_includes/callouts.html +39 -0
 - data/_includes/disqus.html +17 -0
 - data/_includes/footer-scripts.html +1 -0
 - data/_includes/footer.html +20 -0
 - data/_includes/gallery.html +25 -0
 - data/_includes/google-analytics.html +8 -0
 - data/_includes/head-scripts.html +1 -0
 - data/_includes/head.html +22 -0
 - data/_includes/header.html +45 -0
 - data/_includes/hero.html +11 -0
 - data/_includes/image-modal.html +18 -0
 - data/_includes/latest-posts.html +12 -0
 - data/_includes/menubar.html +21 -0
 - data/_includes/notification.html +17 -0
 - data/_includes/pagination.html +23 -0
 - data/_includes/post-card.html +29 -0
 - data/_includes/rating.html +14 -0
 - data/_includes/review.html +27 -0
 - data/_includes/series.html +32 -0
 - data/_includes/share-buttons.html +19 -0
 - data/_includes/showcase.html +64 -0
 - data/_includes/sponsors.html +42 -0
 - data/_includes/subscribe.html +6 -0
 - data/_includes/tabs.html +18 -0
 - data/_includes/tag.html +3 -0
 - data/_includes/toc.html +82 -0
 - data/_includes/vimeo.html +3 -0
 - data/_includes/youtube.html +8 -0
 - data/_layouts/blog.html +22 -0
 - data/_layouts/default.html +59 -1
 - data/_layouts/page.html +7 -1
 - data/_layouts/post.html +24 -1
 - data/_layouts/product-category.html +42 -0
 - data/_layouts/product.html +61 -0
 - data/_layouts/recipe.html +98 -0
 - data/_sass/_layout.scss +40 -0
 - data/_sass/_main.scss +22 -0
 - data/_sass/_showcase.scss +13 -0
 - data/_sass/syntax.scss +209 -0
 - data/assets/css/app.scss +5 -0
 - data/assets/js/app.js +1 -0
 - metadata +39 -1
 
    
        data/_sass/syntax.scss
    ADDED
    
    | 
         @@ -0,0 +1,209 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            .highlight table td { padding: 5px; }
         
     | 
| 
      
 2 
     | 
    
         
            +
            .highlight table pre { margin: 0; }
         
     | 
| 
      
 3 
     | 
    
         
            +
            .highlight .cm {
         
     | 
| 
      
 4 
     | 
    
         
            +
              color: #999988;
         
     | 
| 
      
 5 
     | 
    
         
            +
              font-style: italic;
         
     | 
| 
      
 6 
     | 
    
         
            +
            }
         
     | 
| 
      
 7 
     | 
    
         
            +
            .highlight .cp {
         
     | 
| 
      
 8 
     | 
    
         
            +
              color: #999999;
         
     | 
| 
      
 9 
     | 
    
         
            +
              font-weight: bold;
         
     | 
| 
      
 10 
     | 
    
         
            +
            }
         
     | 
| 
      
 11 
     | 
    
         
            +
            .highlight .c1 {
         
     | 
| 
      
 12 
     | 
    
         
            +
              color: #999988;
         
     | 
| 
      
 13 
     | 
    
         
            +
              font-style: italic;
         
     | 
| 
      
 14 
     | 
    
         
            +
            }
         
     | 
| 
      
 15 
     | 
    
         
            +
            .highlight .cs {
         
     | 
| 
      
 16 
     | 
    
         
            +
              color: #999999;
         
     | 
| 
      
 17 
     | 
    
         
            +
              font-weight: bold;
         
     | 
| 
      
 18 
     | 
    
         
            +
              font-style: italic;
         
     | 
| 
      
 19 
     | 
    
         
            +
            }
         
     | 
| 
      
 20 
     | 
    
         
            +
            .highlight .c, .highlight .cd {
         
     | 
| 
      
 21 
     | 
    
         
            +
              color: #999988;
         
     | 
| 
      
 22 
     | 
    
         
            +
              font-style: italic;
         
     | 
| 
      
 23 
     | 
    
         
            +
            }
         
     | 
| 
      
 24 
     | 
    
         
            +
            .highlight .err {
         
     | 
| 
      
 25 
     | 
    
         
            +
              color: #a61717;
         
     | 
| 
      
 26 
     | 
    
         
            +
              background-color: #e3d2d2;
         
     | 
| 
      
 27 
     | 
    
         
            +
            }
         
     | 
| 
      
 28 
     | 
    
         
            +
            .highlight .gd {
         
     | 
| 
      
 29 
     | 
    
         
            +
              color: #000000;
         
     | 
| 
      
 30 
     | 
    
         
            +
              background-color: #ffdddd;
         
     | 
| 
      
 31 
     | 
    
         
            +
            }
         
     | 
| 
      
 32 
     | 
    
         
            +
            .highlight .ge {
         
     | 
| 
      
 33 
     | 
    
         
            +
              color: #000000;
         
     | 
| 
      
 34 
     | 
    
         
            +
              font-style: italic;
         
     | 
| 
      
 35 
     | 
    
         
            +
            }
         
     | 
| 
      
 36 
     | 
    
         
            +
            .highlight .gr {
         
     | 
| 
      
 37 
     | 
    
         
            +
              color: #aa0000;
         
     | 
| 
      
 38 
     | 
    
         
            +
            }
         
     | 
| 
      
 39 
     | 
    
         
            +
            .highlight .gh {
         
     | 
| 
      
 40 
     | 
    
         
            +
              color: #999999;
         
     | 
| 
      
 41 
     | 
    
         
            +
            }
         
     | 
| 
      
 42 
     | 
    
         
            +
            .highlight .gi {
         
     | 
| 
      
 43 
     | 
    
         
            +
              color: #000000;
         
     | 
| 
      
 44 
     | 
    
         
            +
              background-color: #ddffdd;
         
     | 
| 
      
 45 
     | 
    
         
            +
            }
         
     | 
| 
      
 46 
     | 
    
         
            +
            .highlight .go {
         
     | 
| 
      
 47 
     | 
    
         
            +
              color: #888888;
         
     | 
| 
      
 48 
     | 
    
         
            +
            }
         
     | 
| 
      
 49 
     | 
    
         
            +
            .highlight .gp {
         
     | 
| 
      
 50 
     | 
    
         
            +
              color: #555555;
         
     | 
| 
      
 51 
     | 
    
         
            +
            }
         
     | 
| 
      
 52 
     | 
    
         
            +
            .highlight .gs {
         
     | 
| 
      
 53 
     | 
    
         
            +
              font-weight: bold;
         
     | 
| 
      
 54 
     | 
    
         
            +
            }
         
     | 
| 
      
 55 
     | 
    
         
            +
            .highlight .gu {
         
     | 
| 
      
 56 
     | 
    
         
            +
              color: #aaaaaa;
         
     | 
| 
      
 57 
     | 
    
         
            +
            }
         
     | 
| 
      
 58 
     | 
    
         
            +
            .highlight .gt {
         
     | 
| 
      
 59 
     | 
    
         
            +
              color: #aa0000;
         
     | 
| 
      
 60 
     | 
    
         
            +
            }
         
     | 
| 
      
 61 
     | 
    
         
            +
            .highlight .kc {
         
     | 
| 
      
 62 
     | 
    
         
            +
              color: #000000;
         
     | 
| 
      
 63 
     | 
    
         
            +
              font-weight: bold;
         
     | 
| 
      
 64 
     | 
    
         
            +
            }
         
     | 
| 
      
 65 
     | 
    
         
            +
            .highlight .kd {
         
     | 
| 
      
 66 
     | 
    
         
            +
              color: #000000;
         
     | 
| 
      
 67 
     | 
    
         
            +
              font-weight: bold;
         
     | 
| 
      
 68 
     | 
    
         
            +
            }
         
     | 
| 
      
 69 
     | 
    
         
            +
            .highlight .kn {
         
     | 
| 
      
 70 
     | 
    
         
            +
              color: #000000;
         
     | 
| 
      
 71 
     | 
    
         
            +
              font-weight: bold;
         
     | 
| 
      
 72 
     | 
    
         
            +
            }
         
     | 
| 
      
 73 
     | 
    
         
            +
            .highlight .kp {
         
     | 
| 
      
 74 
     | 
    
         
            +
              color: #000000;
         
     | 
| 
      
 75 
     | 
    
         
            +
              font-weight: bold;
         
     | 
| 
      
 76 
     | 
    
         
            +
            }
         
     | 
| 
      
 77 
     | 
    
         
            +
            .highlight .kr {
         
     | 
| 
      
 78 
     | 
    
         
            +
              color: #000000;
         
     | 
| 
      
 79 
     | 
    
         
            +
              font-weight: bold;
         
     | 
| 
      
 80 
     | 
    
         
            +
            }
         
     | 
| 
      
 81 
     | 
    
         
            +
            .highlight .kt {
         
     | 
| 
      
 82 
     | 
    
         
            +
              color: #445588;
         
     | 
| 
      
 83 
     | 
    
         
            +
              font-weight: bold;
         
     | 
| 
      
 84 
     | 
    
         
            +
            }
         
     | 
| 
      
 85 
     | 
    
         
            +
            .highlight .k, .highlight .kv {
         
     | 
| 
      
 86 
     | 
    
         
            +
              color: #000000;
         
     | 
| 
      
 87 
     | 
    
         
            +
              font-weight: bold;
         
     | 
| 
      
 88 
     | 
    
         
            +
            }
         
     | 
| 
      
 89 
     | 
    
         
            +
            .highlight .mf {
         
     | 
| 
      
 90 
     | 
    
         
            +
              color: #009999;
         
     | 
| 
      
 91 
     | 
    
         
            +
            }
         
     | 
| 
      
 92 
     | 
    
         
            +
            .highlight .mh {
         
     | 
| 
      
 93 
     | 
    
         
            +
              color: #009999;
         
     | 
| 
      
 94 
     | 
    
         
            +
            }
         
     | 
| 
      
 95 
     | 
    
         
            +
            .highlight .il {
         
     | 
| 
      
 96 
     | 
    
         
            +
              color: #009999;
         
     | 
| 
      
 97 
     | 
    
         
            +
            }
         
     | 
| 
      
 98 
     | 
    
         
            +
            .highlight .mi {
         
     | 
| 
      
 99 
     | 
    
         
            +
              color: #009999;
         
     | 
| 
      
 100 
     | 
    
         
            +
            }
         
     | 
| 
      
 101 
     | 
    
         
            +
            .highlight .mo {
         
     | 
| 
      
 102 
     | 
    
         
            +
              color: #009999;
         
     | 
| 
      
 103 
     | 
    
         
            +
            }
         
     | 
| 
      
 104 
     | 
    
         
            +
            .highlight .m, .highlight .mb, .highlight .mx {
         
     | 
| 
      
 105 
     | 
    
         
            +
              color: #009999;
         
     | 
| 
      
 106 
     | 
    
         
            +
            }
         
     | 
| 
      
 107 
     | 
    
         
            +
            .highlight .sb {
         
     | 
| 
      
 108 
     | 
    
         
            +
              color: #d14;
         
     | 
| 
      
 109 
     | 
    
         
            +
            }
         
     | 
| 
      
 110 
     | 
    
         
            +
            .highlight .sc {
         
     | 
| 
      
 111 
     | 
    
         
            +
              color: #d14;
         
     | 
| 
      
 112 
     | 
    
         
            +
            }
         
     | 
| 
      
 113 
     | 
    
         
            +
            .highlight .sd {
         
     | 
| 
      
 114 
     | 
    
         
            +
              color: #d14;
         
     | 
| 
      
 115 
     | 
    
         
            +
            }
         
     | 
| 
      
 116 
     | 
    
         
            +
            .highlight .s2 {
         
     | 
| 
      
 117 
     | 
    
         
            +
              color: #d14;
         
     | 
| 
      
 118 
     | 
    
         
            +
            }
         
     | 
| 
      
 119 
     | 
    
         
            +
            .highlight .se {
         
     | 
| 
      
 120 
     | 
    
         
            +
              color: #d14;
         
     | 
| 
      
 121 
     | 
    
         
            +
            }
         
     | 
| 
      
 122 
     | 
    
         
            +
            .highlight .sh {
         
     | 
| 
      
 123 
     | 
    
         
            +
              color: #d14;
         
     | 
| 
      
 124 
     | 
    
         
            +
            }
         
     | 
| 
      
 125 
     | 
    
         
            +
            .highlight .si {
         
     | 
| 
      
 126 
     | 
    
         
            +
              color: #d14;
         
     | 
| 
      
 127 
     | 
    
         
            +
            }
         
     | 
| 
      
 128 
     | 
    
         
            +
            .highlight .sx {
         
     | 
| 
      
 129 
     | 
    
         
            +
              color: #d14;
         
     | 
| 
      
 130 
     | 
    
         
            +
            }
         
     | 
| 
      
 131 
     | 
    
         
            +
            .highlight .sr {
         
     | 
| 
      
 132 
     | 
    
         
            +
              color: #009926;
         
     | 
| 
      
 133 
     | 
    
         
            +
            }
         
     | 
| 
      
 134 
     | 
    
         
            +
            .highlight .s1 {
         
     | 
| 
      
 135 
     | 
    
         
            +
              color: #d14;
         
     | 
| 
      
 136 
     | 
    
         
            +
            }
         
     | 
| 
      
 137 
     | 
    
         
            +
            .highlight .ss {
         
     | 
| 
      
 138 
     | 
    
         
            +
              color: #990073;
         
     | 
| 
      
 139 
     | 
    
         
            +
            }
         
     | 
| 
      
 140 
     | 
    
         
            +
            .highlight .s {
         
     | 
| 
      
 141 
     | 
    
         
            +
              color: #d14;
         
     | 
| 
      
 142 
     | 
    
         
            +
            }
         
     | 
| 
      
 143 
     | 
    
         
            +
            .highlight .na {
         
     | 
| 
      
 144 
     | 
    
         
            +
              color: #008080;
         
     | 
| 
      
 145 
     | 
    
         
            +
            }
         
     | 
| 
      
 146 
     | 
    
         
            +
            .highlight .bp {
         
     | 
| 
      
 147 
     | 
    
         
            +
              color: #999999;
         
     | 
| 
      
 148 
     | 
    
         
            +
            }
         
     | 
| 
      
 149 
     | 
    
         
            +
            .highlight .nb {
         
     | 
| 
      
 150 
     | 
    
         
            +
              color: #0086B3;
         
     | 
| 
      
 151 
     | 
    
         
            +
            }
         
     | 
| 
      
 152 
     | 
    
         
            +
            .highlight .nc {
         
     | 
| 
      
 153 
     | 
    
         
            +
              color: #445588;
         
     | 
| 
      
 154 
     | 
    
         
            +
              font-weight: bold;
         
     | 
| 
      
 155 
     | 
    
         
            +
            }
         
     | 
| 
      
 156 
     | 
    
         
            +
            .highlight .no {
         
     | 
| 
      
 157 
     | 
    
         
            +
              color: #008080;
         
     | 
| 
      
 158 
     | 
    
         
            +
            }
         
     | 
| 
      
 159 
     | 
    
         
            +
            .highlight .nd {
         
     | 
| 
      
 160 
     | 
    
         
            +
              color: #3c5d5d;
         
     | 
| 
      
 161 
     | 
    
         
            +
              font-weight: bold;
         
     | 
| 
      
 162 
     | 
    
         
            +
            }
         
     | 
| 
      
 163 
     | 
    
         
            +
            .highlight .ni {
         
     | 
| 
      
 164 
     | 
    
         
            +
              color: #800080;
         
     | 
| 
      
 165 
     | 
    
         
            +
            }
         
     | 
| 
      
 166 
     | 
    
         
            +
            .highlight .ne {
         
     | 
| 
      
 167 
     | 
    
         
            +
              color: #990000;
         
     | 
| 
      
 168 
     | 
    
         
            +
              font-weight: bold;
         
     | 
| 
      
 169 
     | 
    
         
            +
            }
         
     | 
| 
      
 170 
     | 
    
         
            +
            .highlight .nf {
         
     | 
| 
      
 171 
     | 
    
         
            +
              color: #990000;
         
     | 
| 
      
 172 
     | 
    
         
            +
              font-weight: bold;
         
     | 
| 
      
 173 
     | 
    
         
            +
            }
         
     | 
| 
      
 174 
     | 
    
         
            +
            .highlight .nl {
         
     | 
| 
      
 175 
     | 
    
         
            +
              color: #990000;
         
     | 
| 
      
 176 
     | 
    
         
            +
              font-weight: bold;
         
     | 
| 
      
 177 
     | 
    
         
            +
            }
         
     | 
| 
      
 178 
     | 
    
         
            +
            .highlight .nn {
         
     | 
| 
      
 179 
     | 
    
         
            +
              color: #555555;
         
     | 
| 
      
 180 
     | 
    
         
            +
            }
         
     | 
| 
      
 181 
     | 
    
         
            +
            .highlight .nt {
         
     | 
| 
      
 182 
     | 
    
         
            +
              color: #000080;
         
     | 
| 
      
 183 
     | 
    
         
            +
            }
         
     | 
| 
      
 184 
     | 
    
         
            +
            .highlight .vc {
         
     | 
| 
      
 185 
     | 
    
         
            +
              color: #008080;
         
     | 
| 
      
 186 
     | 
    
         
            +
            }
         
     | 
| 
      
 187 
     | 
    
         
            +
            .highlight .vg {
         
     | 
| 
      
 188 
     | 
    
         
            +
              color: #008080;
         
     | 
| 
      
 189 
     | 
    
         
            +
            }
         
     | 
| 
      
 190 
     | 
    
         
            +
            .highlight .vi {
         
     | 
| 
      
 191 
     | 
    
         
            +
              color: #008080;
         
     | 
| 
      
 192 
     | 
    
         
            +
            }
         
     | 
| 
      
 193 
     | 
    
         
            +
            .highlight .nv {
         
     | 
| 
      
 194 
     | 
    
         
            +
              color: #008080;
         
     | 
| 
      
 195 
     | 
    
         
            +
            }
         
     | 
| 
      
 196 
     | 
    
         
            +
            .highlight .ow {
         
     | 
| 
      
 197 
     | 
    
         
            +
              color: #000000;
         
     | 
| 
      
 198 
     | 
    
         
            +
              font-weight: bold;
         
     | 
| 
      
 199 
     | 
    
         
            +
            }
         
     | 
| 
      
 200 
     | 
    
         
            +
            .highlight .o {
         
     | 
| 
      
 201 
     | 
    
         
            +
              color: #000000;
         
     | 
| 
      
 202 
     | 
    
         
            +
              font-weight: bold;
         
     | 
| 
      
 203 
     | 
    
         
            +
            }
         
     | 
| 
      
 204 
     | 
    
         
            +
            .highlight .w {
         
     | 
| 
      
 205 
     | 
    
         
            +
              color: #bbbbbb;
         
     | 
| 
      
 206 
     | 
    
         
            +
            }
         
     | 
| 
      
 207 
     | 
    
         
            +
            .highlight {
         
     | 
| 
      
 208 
     | 
    
         
            +
              background-color: #f8f8f8;
         
     | 
| 
      
 209 
     | 
    
         
            +
            }
         
     | 
    
        data/assets/css/app.scss
    ADDED
    
    
    
        data/assets/js/app.js
    ADDED
    
    | 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            //
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: mgm-jekyll-bulma
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.1. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.1.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Maria McDowell
         
     | 
| 
         @@ -33,9 +33,47 @@ extra_rdoc_files: [] 
     | 
|
| 
       33 
33 
     | 
    
         
             
            files:
         
     | 
| 
       34 
34 
     | 
    
         
             
            - LICENSE.txt
         
     | 
| 
       35 
35 
     | 
    
         
             
            - README.md
         
     | 
| 
      
 36 
     | 
    
         
            +
            - _includes/callouts.html
         
     | 
| 
      
 37 
     | 
    
         
            +
            - _includes/disqus.html
         
     | 
| 
      
 38 
     | 
    
         
            +
            - _includes/footer-scripts.html
         
     | 
| 
      
 39 
     | 
    
         
            +
            - _includes/footer.html
         
     | 
| 
      
 40 
     | 
    
         
            +
            - _includes/gallery.html
         
     | 
| 
      
 41 
     | 
    
         
            +
            - _includes/google-analytics.html
         
     | 
| 
      
 42 
     | 
    
         
            +
            - _includes/head-scripts.html
         
     | 
| 
      
 43 
     | 
    
         
            +
            - _includes/head.html
         
     | 
| 
      
 44 
     | 
    
         
            +
            - _includes/header.html
         
     | 
| 
      
 45 
     | 
    
         
            +
            - _includes/hero.html
         
     | 
| 
      
 46 
     | 
    
         
            +
            - _includes/image-modal.html
         
     | 
| 
      
 47 
     | 
    
         
            +
            - _includes/latest-posts.html
         
     | 
| 
      
 48 
     | 
    
         
            +
            - _includes/menubar.html
         
     | 
| 
      
 49 
     | 
    
         
            +
            - _includes/notification.html
         
     | 
| 
      
 50 
     | 
    
         
            +
            - _includes/pagination.html
         
     | 
| 
      
 51 
     | 
    
         
            +
            - _includes/post-card.html
         
     | 
| 
      
 52 
     | 
    
         
            +
            - _includes/rating.html
         
     | 
| 
      
 53 
     | 
    
         
            +
            - _includes/review.html
         
     | 
| 
      
 54 
     | 
    
         
            +
            - _includes/series.html
         
     | 
| 
      
 55 
     | 
    
         
            +
            - _includes/share-buttons.html
         
     | 
| 
      
 56 
     | 
    
         
            +
            - _includes/showcase.html
         
     | 
| 
      
 57 
     | 
    
         
            +
            - _includes/sponsors.html
         
     | 
| 
      
 58 
     | 
    
         
            +
            - _includes/subscribe.html
         
     | 
| 
      
 59 
     | 
    
         
            +
            - _includes/tabs.html
         
     | 
| 
      
 60 
     | 
    
         
            +
            - _includes/tag.html
         
     | 
| 
      
 61 
     | 
    
         
            +
            - _includes/toc.html
         
     | 
| 
      
 62 
     | 
    
         
            +
            - _includes/vimeo.html
         
     | 
| 
      
 63 
     | 
    
         
            +
            - _includes/youtube.html
         
     | 
| 
      
 64 
     | 
    
         
            +
            - _layouts/blog.html
         
     | 
| 
       36 
65 
     | 
    
         
             
            - _layouts/default.html
         
     | 
| 
       37 
66 
     | 
    
         
             
            - _layouts/page.html
         
     | 
| 
       38 
67 
     | 
    
         
             
            - _layouts/post.html
         
     | 
| 
      
 68 
     | 
    
         
            +
            - _layouts/product-category.html
         
     | 
| 
      
 69 
     | 
    
         
            +
            - _layouts/product.html
         
     | 
| 
      
 70 
     | 
    
         
            +
            - _layouts/recipe.html
         
     | 
| 
      
 71 
     | 
    
         
            +
            - _sass/_layout.scss
         
     | 
| 
      
 72 
     | 
    
         
            +
            - _sass/_main.scss
         
     | 
| 
      
 73 
     | 
    
         
            +
            - _sass/_showcase.scss
         
     | 
| 
      
 74 
     | 
    
         
            +
            - _sass/syntax.scss
         
     | 
| 
      
 75 
     | 
    
         
            +
            - assets/css/app.scss
         
     | 
| 
      
 76 
     | 
    
         
            +
            - assets/js/app.js
         
     | 
| 
       39 
77 
     | 
    
         
             
            homepage: https://github.com/mariagwyn/mgm-jekyll-bulma.
         
     | 
| 
       40 
78 
     | 
    
         
             
            licenses:
         
     | 
| 
       41 
79 
     | 
    
         
             
            - MIT
         
     |