├── .distignore ├── .github └── workflows │ ├── deploy-to-wpdotorg.yml │ └── update-wpdororg-assets.yml ├── .gitignore ├── .wordpress-org ├── banner-1544x500.jpg ├── banner-772x250.jpg ├── icon-128x128.png ├── icon-256x256.png ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png └── screenshot-5.png ├── Gruntfile.js ├── README.md ├── SECURITY.md ├── assets ├── css │ ├── fontawesome-all.css │ ├── fontawesome-all.min.css │ ├── menu.css │ └── stag-shortcodes.css ├── icons.yml ├── img │ ├── codestag-icon.svg │ └── sprite-popup.png ├── js │ ├── editor_plugin.js │ ├── fa-v4-shims.min.js │ ├── fontawesome-all.min.js │ ├── icons.js │ ├── plugin-lang.php │ ├── plugin.js │ ├── shortcodes_plugins.js │ ├── shortcodes_plugins.min.js │ ├── stag-shortcode-scripts.js │ └── tinymce-button.js ├── scss │ ├── _preboot.scss │ └── stag-shortcodes.scss └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 ├── config.rb ├── includes ├── class-stagtools-themes.php ├── post-type │ ├── portfolio.php │ ├── project.php │ ├── slides.php │ ├── team.php │ └── testimonials.php ├── settings │ └── settings.php ├── tinymce.php └── widgets │ ├── lib │ ├── TwitterText │ │ └── lib │ │ │ └── Twitter │ │ │ ├── Autolink.php │ │ │ ├── Extractor.php │ │ │ ├── HitHighlighter.php │ │ │ └── Regex.php │ └── TwitterWP │ │ └── lib │ │ └── TwitterWP.php │ ├── stagtools-widget.php │ ├── widget-dribbble.php │ ├── widget-flickr.php │ ├── widget-instagram.php │ └── widget-twitter.php ├── languages ├── stagtools.mo └── stagtools.pot ├── package.json ├── readme.txt ├── shortcodes ├── config.php ├── shortcode-class.php ├── shortcodes.php └── stag-shortcodes.php ├── stagtools.php └── uninstall.php /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/.distignore -------------------------------------------------------------------------------- /.github/workflows/deploy-to-wpdotorg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/.github/workflows/deploy-to-wpdotorg.yml -------------------------------------------------------------------------------- /.github/workflows/update-wpdororg-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/.github/workflows/update-wpdororg-assets.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.DS_Store 3 | .sass-cache/ 4 | config.codekit 5 | /.idea 6 | -------------------------------------------------------------------------------- /.wordpress-org/banner-1544x500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/.wordpress-org/banner-1544x500.jpg -------------------------------------------------------------------------------- /.wordpress-org/banner-772x250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/.wordpress-org/banner-772x250.jpg -------------------------------------------------------------------------------- /.wordpress-org/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/.wordpress-org/icon-128x128.png -------------------------------------------------------------------------------- /.wordpress-org/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/.wordpress-org/icon-256x256.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/.wordpress-org/screenshot-1.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/.wordpress-org/screenshot-2.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/.wordpress-org/screenshot-3.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/.wordpress-org/screenshot-4.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/.wordpress-org/screenshot-5.png -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/css/fontawesome-all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/css/fontawesome-all.css -------------------------------------------------------------------------------- /assets/css/fontawesome-all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/css/fontawesome-all.min.css -------------------------------------------------------------------------------- /assets/css/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/css/menu.css -------------------------------------------------------------------------------- /assets/css/stag-shortcodes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/css/stag-shortcodes.css -------------------------------------------------------------------------------- /assets/icons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/icons.yml -------------------------------------------------------------------------------- /assets/img/codestag-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/img/codestag-icon.svg -------------------------------------------------------------------------------- /assets/img/sprite-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/img/sprite-popup.png -------------------------------------------------------------------------------- /assets/js/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/js/editor_plugin.js -------------------------------------------------------------------------------- /assets/js/fa-v4-shims.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/js/fa-v4-shims.min.js -------------------------------------------------------------------------------- /assets/js/fontawesome-all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/js/fontawesome-all.min.js -------------------------------------------------------------------------------- /assets/js/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/js/icons.js -------------------------------------------------------------------------------- /assets/js/plugin-lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/js/plugin-lang.php -------------------------------------------------------------------------------- /assets/js/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/js/plugin.js -------------------------------------------------------------------------------- /assets/js/shortcodes_plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/js/shortcodes_plugins.js -------------------------------------------------------------------------------- /assets/js/shortcodes_plugins.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/js/shortcodes_plugins.min.js -------------------------------------------------------------------------------- /assets/js/stag-shortcode-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/js/stag-shortcode-scripts.js -------------------------------------------------------------------------------- /assets/js/tinymce-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/js/tinymce-button.js -------------------------------------------------------------------------------- /assets/scss/_preboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/scss/_preboot.scss -------------------------------------------------------------------------------- /assets/scss/stag-shortcodes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/scss/stag-shortcodes.scss -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/config.rb -------------------------------------------------------------------------------- /includes/class-stagtools-themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/includes/class-stagtools-themes.php -------------------------------------------------------------------------------- /includes/post-type/portfolio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/includes/post-type/portfolio.php -------------------------------------------------------------------------------- /includes/post-type/project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/includes/post-type/project.php -------------------------------------------------------------------------------- /includes/post-type/slides.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/includes/post-type/slides.php -------------------------------------------------------------------------------- /includes/post-type/team.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/includes/post-type/team.php -------------------------------------------------------------------------------- /includes/post-type/testimonials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/includes/post-type/testimonials.php -------------------------------------------------------------------------------- /includes/settings/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/includes/settings/settings.php -------------------------------------------------------------------------------- /includes/tinymce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/includes/tinymce.php -------------------------------------------------------------------------------- /includes/widgets/lib/TwitterText/lib/Twitter/Autolink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/includes/widgets/lib/TwitterText/lib/Twitter/Autolink.php -------------------------------------------------------------------------------- /includes/widgets/lib/TwitterText/lib/Twitter/Extractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/includes/widgets/lib/TwitterText/lib/Twitter/Extractor.php -------------------------------------------------------------------------------- /includes/widgets/lib/TwitterText/lib/Twitter/HitHighlighter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/includes/widgets/lib/TwitterText/lib/Twitter/HitHighlighter.php -------------------------------------------------------------------------------- /includes/widgets/lib/TwitterText/lib/Twitter/Regex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/includes/widgets/lib/TwitterText/lib/Twitter/Regex.php -------------------------------------------------------------------------------- /includes/widgets/lib/TwitterWP/lib/TwitterWP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/includes/widgets/lib/TwitterWP/lib/TwitterWP.php -------------------------------------------------------------------------------- /includes/widgets/stagtools-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/includes/widgets/stagtools-widget.php -------------------------------------------------------------------------------- /includes/widgets/widget-dribbble.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/includes/widgets/widget-dribbble.php -------------------------------------------------------------------------------- /includes/widgets/widget-flickr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/includes/widgets/widget-flickr.php -------------------------------------------------------------------------------- /includes/widgets/widget-instagram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/includes/widgets/widget-instagram.php -------------------------------------------------------------------------------- /includes/widgets/widget-twitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/includes/widgets/widget-twitter.php -------------------------------------------------------------------------------- /languages/stagtools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/languages/stagtools.mo -------------------------------------------------------------------------------- /languages/stagtools.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/languages/stagtools.pot -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/package.json -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/readme.txt -------------------------------------------------------------------------------- /shortcodes/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/shortcodes/config.php -------------------------------------------------------------------------------- /shortcodes/shortcode-class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/shortcodes/shortcode-class.php -------------------------------------------------------------------------------- /shortcodes/shortcodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/shortcodes/shortcodes.php -------------------------------------------------------------------------------- /shortcodes/stag-shortcodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/shortcodes/stag-shortcodes.php -------------------------------------------------------------------------------- /stagtools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/stagtools.php -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codestag/stagtools/HEAD/uninstall.php --------------------------------------------------------------------------------