{{post.title}}
{% if post.description %}{{ post.description | strip_html | truncate: 135 }}{% else %}{{ post.content | strip_html | truncate: 135 }}{% endif %}
Repository: artemsheludko/galada Branch: master Commit: 73ab009d1aa0 Files: 53 Total size: 113.9 KB Directory structure: gitextract_ta4vvcsw/ ├── .gitignore ├── 404.html ├── Gemfile ├── LICENSE.txt ├── README.md ├── _config.yml ├── _includes/ │ ├── disqus-comments.html │ ├── footer.html │ ├── google-analytics.html │ ├── head.html │ ├── header.html │ ├── javascripts.html │ ├── loader.html │ ├── main.scss │ ├── pagination.html │ └── sidebar.html ├── _layouts/ │ ├── default.html │ ├── page.html │ └── post.html ├── _pages/ │ ├── about.md │ └── styleguide.md ├── _posts/ │ ├── 2018-05-29-welcome-to-jekyll.markdown │ ├── 2018-08-23-abstraction-as-art.markdown │ ├── 2018-08-23-flower-care-guide.markdown │ ├── 2018-08-23-how-to-plan-a-camping-trip.markdown │ ├── 2018-08-23-night-city-lights.markdown │ ├── 2018-08-23-premiere-on-broadway.markdown │ ├── 2018-08-23-the-most-popular-mistakes.markdown │ └── 2018-08-23-the-path-to-self-perfection.markdown ├── _sass/ │ ├── 0-settings/ │ │ ├── _colors.scss │ │ └── _global.scss │ ├── 1-tools/ │ │ ├── _grid.scss │ │ ├── _mixins.scss │ │ ├── _normalize.scss │ │ ├── _reset.scss │ │ ├── _shared.scss │ │ └── _syntax-highlighting.scss │ ├── 2-base/ │ │ └── _base.scss │ ├── 3-modules/ │ │ ├── _buttons.scss │ │ ├── _footer.scss │ │ ├── _loader.scss │ │ ├── _pagination.scss │ │ └── _sidebar.scss │ ├── 4-layouts/ │ │ ├── _home.scss │ │ ├── _page.scss │ │ ├── _post.scss │ │ └── _tags.scss │ └── 5-trumps/ │ └── _helpers.scss ├── index.html ├── js/ │ ├── common.js │ └── jquery.fitvids.js ├── search.json └── tags.html ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ _site .sass-cache .jekyll-metadata *.DS_Store ================================================ FILE: 404.html ================================================ --- layout: page title: Page not found image: 04.jpg permalink: /404.html ---
| Header 1 | Header 2 | Header 3 | Header 4 | Header 5 |
|---|---|---|---|---|
| Row:1 Cell:1 | Row:1 Cell:2 | Row:1 Cell:3 | Row:1 Cell:4 | Row:1 Cell:5 |
| Row:2 Cell:1 | Row:2 Cell:2 | Row:2 Cell:3 | Row:2 Cell:4 | Row:2 Cell:5 |
| Row:3 Cell:1 | Row:3 Cell:2 | Row:3 Cell:3 | Row:3 Cell:4 | Row:3 Cell:5 |
| Row:4 Cell:1 | Row:4 Cell:2 | Row:4 Cell:3 | Row:4 Cell:4 | Row:4 Cell:5 |
| Row:5 Cell:1 | Row:5 Cell:2 | Row:5 Cell:3 | Row:5 Cell:4 | Row:5 Cell:5 |
| Row:6 Cell:1 | Row:6 Cell:2 | Row:6 Cell:3 | Row:6 Cell:4 | Row:6 Cell:5 |
{% if post.description %}{{ post.description | strip_html | truncate: 163 }}{% else %}{{ post.content | strip_html | truncate: 163 }}{% endif %}
Read More{% if post.description %}{{ post.description | strip_html | truncate: 135 }}{% else %}{{ post.content | strip_html | truncate: 135 }}{% endif %}
x
'; head.appendChild(div.childNodes[1]); } if ( options ) { $.extend( settings, options ); } return this.each(function(){ var selectors = [ 'iframe[src*="player.vimeo.com"]', 'iframe[src*="youtube.com"]', 'iframe[src*="youtube-nocookie.com"]', 'iframe[src*="kickstarter.com"][src*="video.html"]', 'object', 'embed' ]; if (settings.customSelector) { selectors.push(settings.customSelector); } var ignoreList = '.fitvidsignore'; if(settings.ignore) { ignoreList = ignoreList + ', ' + settings.ignore; } var $allVideos = $(this).find(selectors.join(',')); $allVideos = $allVideos.not('object object'); // SwfObj conflict patch $allVideos = $allVideos.not(ignoreList); // Disable FitVids on this video. $allVideos.each(function(){ var $this = $(this); if($this.parents(ignoreList).length > 0) { return; // Disable FitVids on this video. } if (this.tagName.toLowerCase() === 'embed' && $this.parent('object').length || $this.parent('.fluid-width-video-wrapper').length) { return; } if ((!$this.css('height') && !$this.css('width')) && (isNaN($this.attr('height')) || isNaN($this.attr('width')))) { $this.attr('height', 9); $this.attr('width', 16); } var height = ( this.tagName.toLowerCase() === 'object' || ($this.attr('height') && !isNaN(parseInt($this.attr('height'), 10))) ) ? parseInt($this.attr('height'), 10) : $this.height(), width = !isNaN(parseInt($this.attr('width'), 10)) ? parseInt($this.attr('width'), 10) : $this.width(), aspectRatio = height / width; if(!$this.attr('name')){ var videoName = 'fitvid' + $.fn.fitVids._count; $this.attr('name', videoName); $.fn.fitVids._count++; } $this.wrap('').parent('.fluid-width-video-wrapper').css('padding-top', (aspectRatio * 100)+'%'); $this.removeAttr('height').removeAttr('width'); }); }); }; // Internal counter for unique video names. $.fn.fitVids._count = 0; // Works with either jQuery or Zepto })( window.jQuery || window.Zepto ); ================================================ FILE: search.json ================================================ --- layout: null --- [ {% for post in site.posts %} { "title" : "{{ post.title | escape }}", "category" : "{{ post.category }}", "tags" : "{{ post.tags | array_to_sentence_string }}", "url" : "{{ site.baseurl }}{{ post.url }}", "date" : "{{ post.date }}" } {% unless forloop.last %},{% endunless %} {% endfor %} ] ================================================ FILE: tags.html ================================================ --- layout: page title: Tags in Blog image: 10.jpg permalink: /tags/ --- {% capture site_tags %}{% for tag in site.tags %}{{ tag | first }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %} {% assign tag_words = site_tags | split:',' | sort %}