gitextract_qnhvvtzg/ ├── .gitignore ├── 404.html ├── Gruntfile.js ├── LICENSE ├── README.md ├── _config.yml ├── _includes/ │ ├── Scroll_to_Top.html │ ├── disqus_comments.html │ ├── footer.html │ ├── head.html │ ├── nav.html │ ├── newsletter.html │ ├── search.html │ ├── share.html │ ├── signoff.html │ └── subgallery.html ├── _layouts/ │ ├── default.html │ ├── home.html │ ├── journal_by_category.html │ ├── journal_by_tag.html │ ├── page.html │ └── post.html ├── _posts/ │ ├── 2016-02-01-multiple-galleries.markdown │ ├── 2016-03-01-Around-the-World-in-80-Days.markdown │ ├── 2016-03-05-Moby-Dick.markdown │ ├── 2016-03-10-At-the-Earth's-Core.markdown │ ├── 2016-03-15-The-Wizard-of-Oz.markdown │ ├── 2016-03-20-The-Scarlet-Plague.markdown │ ├── 2016-03-25-Alice-in-Wonderland.markdown │ └── 2016-07-01-images-size-for-better-performance.markdown ├── about/ │ └── index.html ├── bower.json ├── css/ │ ├── WYSIWYG.css │ ├── galleries.css │ ├── journal.css │ ├── magnificpopup.css │ ├── main.css │ ├── selena.css │ ├── super-search.css │ └── tags-wrap.css ├── feed.xml ├── gallery/ │ ├── gallery01/ │ │ └── index.html │ ├── gallery02/ │ │ └── index.html │ ├── gallery03/ │ │ └── index.html │ ├── gallery04/ │ │ └── index.html │ ├── gallery05/ │ │ └── index.html │ ├── gallery06/ │ │ └── index.html │ ├── gallery07/ │ │ └── index.html │ ├── gallery08/ │ │ └── index.html │ ├── gallery09/ │ │ └── index.html │ └── index.html ├── index.html ├── journal/ │ ├── category/ │ │ ├── cat01.md │ │ ├── cat02.md │ │ ├── cat03.md │ │ ├── cat04.md │ │ └── index.html │ ├── index.html │ └── tag/ │ ├── index.html │ ├── tag01.md │ ├── tag02.md │ ├── tag03.md │ └── tag04.md ├── js/ │ ├── jquery.magnific-popup.js │ ├── modernizr.js │ ├── scripts.js │ └── super-search.js ├── newsletter/ │ ├── index.html │ └── js/ │ ├── archivebar-desktop-plugins.js │ └── fancyzoom.mc.js ├── package.json ├── search.html └── search.json