gitextract_s7e4p_da/ ├── .gitattributes ├── 404.php ├── archive.php ├── comments.php ├── content-gallery.php ├── content-image.php ├── content-portfolio-featured.php ├── content-portfolio.php ├── content-quote.php ├── content-video.php ├── content.php ├── css/ │ ├── animate.css │ ├── bootstrap.css │ ├── et-icons.css │ ├── lightbox.css │ ├── owl.css │ ├── simple-line-icons.css │ └── social_fix.css ├── customizer.php ├── footer.php ├── functions.php ├── header.php ├── home-banner.php ├── icomoon.css ├── includes/ │ ├── class-tgm-plugin-activation.php │ ├── navwalker.php │ └── theme-options.php ├── index.php ├── js/ │ ├── lightbox.js │ ├── main.js │ ├── meta.js │ ├── owl.carousel.js │ ├── social.js │ └── typed.js ├── nav-searchform.php ├── nav.php ├── option-tree/ │ ├── assets/ │ │ ├── css/ │ │ │ ├── icomoon.css │ │ │ ├── ot-admin-rtl.css │ │ │ └── ot-admin.css │ │ ├── js/ │ │ │ ├── ot-admin.js │ │ │ ├── ot-postformats.js │ │ │ └── vendor/ │ │ │ └── jquery/ │ │ │ └── jquery-ui-timepicker.js │ │ └── theme-mode/ │ │ ├── demo-functions.php │ │ ├── demo-meta-boxes.php │ │ └── demo-theme-options.php │ ├── composer.json │ ├── includes/ │ │ ├── ot-cleanup-api.php │ │ ├── ot-functions-admin.php │ │ ├── ot-functions-compat.php │ │ ├── ot-functions-deprecated.php │ │ ├── ot-functions-docs-page.php │ │ ├── ot-functions-option-types.php │ │ ├── ot-functions-settings-page.php │ │ ├── ot-functions.php │ │ ├── ot-meta-box-api.php │ │ ├── ot-post-formats-api.php │ │ └── ot-settings-api.php │ ├── languages/ │ │ ├── option-tree-et.mo │ │ ├── option-tree-et.po │ │ └── option-tree.po │ ├── license.txt │ ├── ot-loader.php │ └── readme.txt ├── page.php ├── search.php ├── searchform.php ├── shortcodes.php ├── sidebar.php ├── single-portfolio.php ├── single.php ├── style.css ├── taxonomy-portfolio_category.php ├── taxonomy-portfolio_tag.php └── template-portfolio.php