├── .editorconfig ├── .gitignore ├── Makefile ├── README.md ├── docker-compose.yml ├── docker ├── compose │ ├── build.yml │ └── supply.yml ├── recipes │ └── node │ │ └── Dockerfile └── scripts │ ├── build.sh │ ├── setup.sh │ └── supply.sh └── source ├── .nvmrc ├── index.js ├── package.json ├── pug ├── _config.pug ├── _layout.pug └── index.pug ├── themes ├── general │ ├── css │ │ ├── IQHow_FEYlDC4Gzy_m8fcoWiMMZ7xLd792ULpGE4W_Y.woff2 │ │ ├── font-awesome.css │ │ ├── general.css │ │ ├── monserrat.css │ │ ├── prettify.css │ │ └── zhcz-_WihjSQC0oHJ9TCYPk_vArhqVIZ0nv9q090hN8.woff2 │ ├── img │ │ └── post.png │ └── js │ │ ├── jquery-migrate.min.js │ │ ├── jquery.js │ │ ├── jquery.ui.tooltip.min.js │ │ └── run_prettify.js ├── ink │ ├── 404.php │ ├── _post-background.php │ ├── _post-comments.php │ ├── _post-cover-wrap.php │ ├── _post-load.php │ ├── _post-share.php │ ├── archive.php │ ├── assets │ │ ├── css │ │ │ ├── editor-style.css │ │ │ └── font-awesome.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── img │ │ │ ├── favicon.ico │ │ │ ├── layout-images-2x.png │ │ │ ├── layout-images-gray-2x.png │ │ │ ├── layout-images-gray.png │ │ │ └── layout-images.png │ │ ├── js │ │ │ ├── customizer-ui.js │ │ │ ├── customizer.js │ │ │ ├── jquery.custom.js │ │ │ ├── jquery.custom.min.js │ │ │ ├── lib │ │ │ │ ├── fitvids │ │ │ │ │ ├── jquery.fitvids.js │ │ │ │ │ └── jquery.fitvids.min.js │ │ │ │ └── spin │ │ │ │ │ ├── jquery.spin.js │ │ │ │ │ ├── jquery.spin.min.js │ │ │ │ │ ├── spin.js │ │ │ │ │ └── spin.min.js │ │ │ └── plugins.js │ │ └── sass │ │ │ ├── _comments.scss │ │ │ ├── _contents.scss │ │ │ ├── _elements.scss │ │ │ ├── _forms.scss │ │ │ ├── _grid.scss │ │ │ ├── _pages.scss │ │ │ ├── _patterns.scss │ │ │ ├── _posts.scss │ │ │ ├── _preboot.scss │ │ │ ├── _reset.scss │ │ │ ├── _scaffolding.scss │ │ │ ├── _sidebar.scss │ │ │ ├── _support.scss │ │ │ ├── editor-style.scss │ │ │ └── style.scss │ ├── author.php │ ├── changelog.md │ ├── changelog.txt │ ├── comments.php │ ├── config.rb │ ├── contact.php │ ├── content-none.php │ ├── content-page.php │ ├── content-single.php │ ├── content.php │ ├── current.php │ ├── footer.php │ ├── header.php │ ├── inc │ │ ├── customizer.php │ │ ├── extras.php │ │ ├── init.php │ │ ├── meta │ │ │ └── post.php │ │ ├── template-tags.php │ │ ├── theme-functions.php │ │ └── widgets │ │ │ ├── contributors.php │ │ │ ├── recent-posts-grid.php │ │ │ ├── recent-posts.php │ │ │ └── static-content.php │ ├── index.php │ ├── languages │ │ ├── de_DE.mo │ │ ├── de_DE.po │ │ ├── default.mo │ │ └── default.po │ ├── page.php │ ├── rcp │ │ ├── change-password.php │ │ ├── init.php │ │ ├── login.php │ │ ├── profile-editor.php │ │ ├── register-single.php │ │ └── register.php │ ├── screenshot.png │ ├── search.php │ ├── searchform.php │ ├── single.php │ ├── stag-customizer │ │ ├── changelog.txt │ │ ├── class-stag-logo.php │ │ ├── class-stag-widget.php │ │ ├── class-tgm-plugin-activation.php │ │ ├── css │ │ │ └── stag-admin-metabox.css │ │ ├── helper-fonts.php │ │ ├── helper-typekit.php │ │ ├── js │ │ │ └── customizer-typekit.js │ │ ├── stag-admin-metabox.php │ │ └── stag-customizer.php │ ├── style.css │ └── widgetized.php └── plugins │ ├── akismet │ ├── .htaccess │ ├── _inc │ │ ├── akismet.css │ │ ├── akismet.js │ │ ├── form.js │ │ └── img │ │ │ └── logo-full-2x.png │ ├── akismet.php │ ├── class.akismet-admin.php │ ├── class.akismet-widget.php │ ├── class.akismet.php │ ├── index.php │ ├── readme.txt │ ├── views │ │ ├── config.php │ │ ├── get.php │ │ ├── notice.php │ │ ├── start.php │ │ ├── stats.php │ │ └── strict.php │ └── wrapper.php │ ├── breadcrumbs │ ├── readme.txt │ ├── script_link.png │ ├── yoast-breadcrumbs.php │ ├── yst_plugin_tools.css │ └── yst_plugin_tools.php │ ├── disqus-comment-system │ ├── LICENSE │ ├── comments.php │ ├── disqus.php │ ├── export.php │ ├── lib │ │ ├── api │ │ │ └── disqus │ │ │ │ ├── disqus.php │ │ │ │ ├── json.php │ │ │ │ └── url.php │ │ ├── wp-api.php │ │ └── wp-cli.php │ ├── locales │ │ ├── default.mo │ │ └── default.po │ ├── manage.php │ ├── media │ │ ├── images │ │ │ └── logo.png │ │ ├── js │ │ │ ├── admin.js │ │ │ ├── count.js │ │ │ ├── dashboard.js │ │ │ ├── disqus.js │ │ │ ├── pointer.js │ │ │ └── upload.js │ │ └── styles │ │ │ ├── manage-pre25.css │ │ │ └── manage.css │ ├── readme.txt │ ├── scripts │ │ ├── export-comments.php │ │ └── import-comments.php │ └── upgrade.php │ ├── easy-facebook-likebox │ ├── README.txt │ ├── admin │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── admin.css │ │ │ │ └── index.php │ │ │ └── js │ │ │ │ ├── admin.js │ │ │ │ └── index.php │ │ ├── easy-facebook-likebox-admin.php │ │ ├── includes │ │ │ └── index.php │ │ └── views │ │ │ ├── admin.php │ │ │ ├── feed-settings.php │ │ │ ├── index.php │ │ │ ├── instructinos.php │ │ │ ├── popup-settings-advanced.php │ │ │ ├── popup-settings.php │ │ │ └── support-us.php │ ├── assets │ │ ├── PluginIcon.png │ │ ├── banner-772x250.jpg │ │ ├── index.php │ │ ├── screenshot-1.png │ │ ├── screenshot-2.png │ │ ├── screenshot-3.png │ │ ├── screenshot-4.png │ │ ├── screenshot-5.png │ │ ├── screenshot-6.png │ │ └── screenshot-7.png │ ├── easy-facebook-likebox.php │ ├── includes │ │ ├── easy-custom-facebook-feed-widget.php │ │ ├── easy-facebook-likebox-widget.php │ │ ├── easy-facebook-page-plugin-widget.php │ │ └── index.php │ ├── index.php │ ├── languages │ │ ├── easy-facebook-likebox.pot │ │ └── index.php │ ├── public │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── index.php │ │ │ │ ├── popup_close.png │ │ │ │ └── public.css │ │ │ ├── images │ │ │ │ ├── facebook.png │ │ │ │ ├── linkedin-16.png │ │ │ │ ├── plus.png │ │ │ │ ├── popup_close.png │ │ │ │ ├── square-google-plus-16.png │ │ │ │ └── twitter-16.png │ │ │ ├── index.php │ │ │ ├── js │ │ │ │ ├── index.php │ │ │ │ ├── jquery.cookie.js │ │ │ │ ├── public.js │ │ │ │ └── wp-config.php │ │ │ └── popup │ │ │ │ ├── jquery.magnific-popup.js │ │ │ │ ├── jquery.magnific-popup.min.js │ │ │ │ └── magnific-popup.css │ │ ├── easy-facebook-likebox.php │ │ ├── includes │ │ │ ├── Mobile_Detect.php │ │ │ ├── core-functions.php │ │ │ └── index.php │ │ └── views │ │ │ ├── feed.php │ │ │ ├── filters.txt │ │ │ ├── index.php │ │ │ └── public.php │ └── uninstall.php │ ├── embed-github-gist │ ├── embed-github-gist.php │ ├── readme.txt │ └── stylesheets │ │ └── embed.css │ ├── ghost │ ├── LICENSE.txt │ ├── assets │ │ ├── ghost-logo.png │ │ └── index.php │ ├── class-ghost.php │ ├── css │ │ ├── admin.css │ │ ├── index.php │ │ └── public.css │ ├── ghost.php │ ├── index.php │ ├── js │ │ └── admin.js │ ├── lang │ │ ├── index.php │ │ └── plugin-name.pot │ ├── lib │ │ └── html-to-markdown │ │ │ ├── HTML-To-Markdown.php │ │ │ └── licence.txt │ ├── readme.txt │ ├── uninstall.php │ └── views │ │ ├── admin.php │ │ ├── index.php │ │ └── public.php │ ├── jetpack │ ├── .svnignore │ ├── 3rd-party │ │ ├── 3rd-party.php │ │ ├── bitly.php │ │ ├── buddypress.php │ │ └── wpml.php │ ├── _inc │ │ ├── fonts │ │ │ ├── automatticons │ │ │ │ ├── automatticons.eot │ │ │ │ ├── automatticons.svg │ │ │ │ ├── automatticons.ttf │ │ │ │ └── automatticons.woff │ │ │ └── jetpack │ │ │ │ ├── jetpack.eot │ │ │ │ ├── jetpack.svg │ │ │ │ ├── jetpack.ttf │ │ │ │ └── jetpack.woff │ │ ├── footer.php │ │ ├── gallery-settings.js │ │ ├── genericons.php │ │ ├── genericons │ │ │ ├── COPYING.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── genericons.css │ │ │ └── genericons │ │ │ │ ├── Genericons.eot │ │ │ │ ├── Genericons.svg │ │ │ │ ├── Genericons.ttf │ │ │ │ ├── Genericons.woff │ │ │ │ ├── example.html │ │ │ │ ├── genericons.css │ │ │ │ └── rtl │ │ │ │ └── genericons-rtl.css │ │ ├── header.php │ │ ├── jetpack-admin.js │ │ ├── jetpack-modules.js │ │ ├── jetpack-modules.models.js │ │ ├── jetpack-modules.views.js │ │ ├── jetpack.js │ │ ├── jp.js │ │ ├── jquery.inview.js │ │ ├── jquery.jetpack-resize.js │ │ ├── jquery.jetpack-sync.js │ │ ├── jquery.spin.js │ │ ├── lib │ │ │ ├── admin-pages │ │ │ │ ├── class.jetpack-admin-page.php │ │ │ │ ├── class.jetpack-landing-page.php │ │ │ │ └── class.jetpack-settings-page.php │ │ │ ├── class.color.php │ │ │ ├── markdown │ │ │ │ ├── 0-load.php │ │ │ │ ├── README.md │ │ │ │ ├── extra.php │ │ │ │ ├── gfm.php │ │ │ │ └── test.php │ │ │ └── tonesque.php │ │ ├── postmessage.js │ │ └── spin.js │ ├── class.jetpack-admin.php │ ├── class.jetpack-autoupdate.php │ ├── class.jetpack-bbpress-json-api-compat.php │ ├── class.jetpack-cli.php │ ├── class.jetpack-client-server.php │ ├── class.jetpack-client.php │ ├── class.jetpack-data.php │ ├── class.jetpack-debugger.php │ ├── class.jetpack-error.php │ ├── class.jetpack-heartbeat.php │ ├── class.jetpack-ixr-client.php │ ├── class.jetpack-modules-list-table.php │ ├── class.jetpack-network-sites-list-table.php │ ├── class.jetpack-network.php │ ├── class.jetpack-options.php │ ├── class.jetpack-post-images.php │ ├── class.jetpack-signature.php │ ├── class.jetpack-sync.php │ ├── class.jetpack-twitter-cards.php │ ├── class.jetpack-user-agent.php │ ├── class.jetpack-xmlrpc-server.php │ ├── class.jetpack.php │ ├── class.json-api-endpoints.php │ ├── class.json-api.php │ ├── class.media-extractor.php │ ├── class.media-summary.php │ ├── class.photon.php │ ├── composer.json │ ├── css │ │ ├── jetpack-admin-rtl.css │ │ ├── jetpack-admin-rtl.css.map │ │ ├── jetpack-admin-rtl.min.css │ │ ├── jetpack-admin-rtl.min.css.map │ │ ├── jetpack-admin.css │ │ ├── jetpack-admin.css.map │ │ ├── jetpack-admin.min.css │ │ ├── jetpack-admin.min.css.map │ │ ├── jetpack-banners-rtl.css │ │ ├── jetpack-banners-rtl.css.map │ │ ├── jetpack-banners-rtl.min.css │ │ ├── jetpack-banners-rtl.min.css.map │ │ ├── jetpack-banners.css │ │ ├── jetpack-banners.css.map │ │ ├── jetpack-banners.min.css │ │ ├── jetpack-banners.min.css.map │ │ ├── jetpack-icons.css │ │ ├── jetpack-icons.css.map │ │ ├── jetpack-icons.min.css │ │ ├── jetpack-icons.min.css.map │ │ ├── jetpack-rtl.css │ │ └── jetpack.css │ ├── functions.compat.php │ ├── functions.gallery.php │ ├── functions.opengraph.php │ ├── functions.photon.php │ ├── images │ │ ├── connect-plug.svg │ │ ├── custom-css.jpg │ │ ├── custom-css@2x.jpg │ │ ├── download-arrow.svg │ │ ├── jetpack-logo.png │ │ ├── jetpack-logo.svg │ │ ├── new-badge.svg │ │ ├── rocketeer.svg │ │ ├── rss │ │ │ ├── blue-large.png │ │ │ ├── blue-medium.png │ │ │ ├── blue-small.png │ │ │ ├── green-large.png │ │ │ ├── green-medium.png │ │ │ ├── green-small.png │ │ │ ├── orange-large.png │ │ │ ├── orange-medium.png │ │ │ ├── orange-small.png │ │ │ ├── pink-large.png │ │ │ ├── pink-medium.png │ │ │ ├── pink-small.png │ │ │ ├── purple-large.png │ │ │ ├── purple-medium.png │ │ │ ├── purple-small.png │ │ │ ├── red-large.png │ │ │ ├── red-medium.png │ │ │ ├── red-small.png │ │ │ ├── silver-large.png │ │ │ ├── silver-medium.png │ │ │ └── silver-small.png │ │ ├── screenshots │ │ │ ├── beautifulmath.png │ │ │ ├── carousel.png │ │ │ ├── comments.png │ │ │ ├── contactform.png │ │ │ ├── custom-content-types.png │ │ │ ├── custom-css.png │ │ │ ├── google-plus.png │ │ │ ├── hovercards.png │ │ │ ├── likes.png │ │ │ ├── mobile-push-notifications.jpg │ │ │ ├── mobile-theme.png │ │ │ ├── notes.png │ │ │ ├── post-by-email.png │ │ │ ├── publicize.png │ │ │ ├── related-posts.png │ │ │ ├── sharing.png │ │ │ ├── shortcodes.png │ │ │ ├── shortlinks.png │ │ │ ├── site-icon.png │ │ │ ├── spelling.png │ │ │ ├── stats.png │ │ │ ├── subscriptions.png │ │ │ ├── tiled-gallery.png │ │ │ ├── vaultpress.png │ │ │ └── widgets.png │ │ ├── stats-smiley.gif │ │ ├── the-cloud-sm.svg │ │ ├── the-cloud.svg │ │ ├── the-footcloud.svg │ │ ├── the-undercloud.svg │ │ ├── wordpress-connect.jpg │ │ ├── wordpress-connect@2x.jpg │ │ ├── wordpress-stats.jpg │ │ ├── wordpress-stats@2x.jpg │ │ └── wpspin_light-2x.gif │ ├── jetpack.php │ ├── json-endpoints.php │ ├── json-endpoints │ │ ├── class.wpcom-json-api-comment-endpoint.php │ │ ├── class.wpcom-json-api-delete-media-endpoint.php │ │ ├── class.wpcom-json-api-delete-media-v1-1-endpoint.php │ │ ├── class.wpcom-json-api-get-comment-endpoint.php │ │ ├── class.wpcom-json-api-get-media-endpoint.php │ │ ├── class.wpcom-json-api-get-media-v1-1-endpoint.php │ │ ├── class.wpcom-json-api-get-post-endpoint.php │ │ ├── class.wpcom-json-api-get-site-endpoint.php │ │ ├── class.wpcom-json-api-get-taxonomies-endpoint.php │ │ ├── class.wpcom-json-api-get-taxonomy-endpoint.php │ │ ├── class.wpcom-json-api-list-comments-endpoint.php │ │ ├── class.wpcom-json-api-list-embeds-endpoint.php │ │ ├── class.wpcom-json-api-list-media-endpoint.php │ │ ├── class.wpcom-json-api-list-media-v1-1-endpoint.php │ │ ├── class.wpcom-json-api-list-posts-endpoint.php │ │ ├── class.wpcom-json-api-list-shortcodes-endpoint.php │ │ ├── class.wpcom-json-api-list-users-endpoint.php │ │ ├── class.wpcom-json-api-post-endpoint.php │ │ ├── class.wpcom-json-api-publicize-endpoint.php │ │ ├── class.wpcom-json-api-render-embed-endpoint.php │ │ ├── class.wpcom-json-api-render-embed-reversal-endpoint.php │ │ ├── class.wpcom-json-api-render-endpoint.php │ │ ├── class.wpcom-json-api-render-shortcode-endpoint.php │ │ ├── class.wpcom-json-api-site-settings-endpoint.php │ │ ├── class.wpcom-json-api-taxonomy-endpoint.php │ │ ├── class.wpcom-json-api-update-comment-endpoint.php │ │ ├── class.wpcom-json-api-update-media-endpoint.php │ │ ├── class.wpcom-json-api-update-media-v1-1-endpoint.php │ │ ├── class.wpcom-json-api-update-post-endpoint.php │ │ ├── class.wpcom-json-api-update-taxonomy-endpoint.php │ │ ├── class.wpcom-json-api-upload-media-endpoint.php │ │ ├── class.wpcom-json-api-upload-media-v1-1-endpoint.php │ │ └── jetpack │ │ │ ├── class.jetpack-json-api-check-capabilities-endpoint.php │ │ │ ├── class.jetpack-json-api-core-endpoint.php │ │ │ ├── class.jetpack-json-api-core-modify-endpoint.php │ │ │ ├── class.jetpack-json-api-endpoint.php │ │ │ ├── class.jetpack-json-api-modules-endpoint.php │ │ │ ├── class.jetpack-json-api-modules-get-endpoint.php │ │ │ ├── class.jetpack-json-api-modules-list-endpoint.php │ │ │ ├── class.jetpack-json-api-modules-modify-endpoint.php │ │ │ ├── class.jetpack-json-api-plugins-delete-endpoint.php │ │ │ ├── class.jetpack-json-api-plugins-endpoint.php │ │ │ ├── class.jetpack-json-api-plugins-get-endpoint.php │ │ │ ├── class.jetpack-json-api-plugins-install-endpoint.php │ │ │ ├── class.jetpack-json-api-plugins-list-endpoint.php │ │ │ ├── class.jetpack-json-api-plugins-modify-endpoint.php │ │ │ ├── class.jetpack-json-api-themes-active-endpoint.php │ │ │ ├── class.jetpack-json-api-themes-endpoint.php │ │ │ ├── class.jetpack-json-api-themes-get-endpoint.php │ │ │ ├── class.jetpack-json-api-themes-list-endpoint.php │ │ │ ├── class.jetpack-json-api-themes-modify-endpoint.php │ │ │ ├── class.jetpack-json-api-updates-status-endpoint.php │ │ │ └── json-api-jetpack-endpoints.php │ ├── languages │ │ ├── jetpack-af.mo │ │ ├── jetpack-af.po │ │ ├── jetpack-ar.mo │ │ ├── jetpack-ar.po │ │ ├── jetpack-az.mo │ │ ├── jetpack-az.po │ │ ├── jetpack-bg_BG.mo │ │ ├── jetpack-bg_BG.po │ │ ├── jetpack-bs_BA.mo │ │ ├── jetpack-bs_BA.po │ │ ├── jetpack-ca.mo │ │ ├── jetpack-ca.po │ │ ├── jetpack-ckb.mo │ │ ├── jetpack-ckb.po │ │ ├── jetpack-cs_CZ.mo │ │ ├── jetpack-cs_CZ.po │ │ ├── jetpack-cy.mo │ │ ├── jetpack-cy.po │ │ ├── jetpack-da_DK.mo │ │ ├── jetpack-da_DK.po │ │ ├── jetpack-de_DE.mo │ │ ├── jetpack-de_DE.po │ │ ├── jetpack-el.mo │ │ ├── jetpack-el.po │ │ ├── jetpack-es_ES.mo │ │ ├── jetpack-es_ES.po │ │ ├── jetpack-fa_IR.mo │ │ ├── jetpack-fa_IR.po │ │ ├── jetpack-fi.mo │ │ ├── jetpack-fi.po │ │ ├── jetpack-fr_FR.mo │ │ ├── jetpack-fr_FR.po │ │ ├── jetpack-gl_ES.mo │ │ ├── jetpack-gl_ES.po │ │ ├── jetpack-he_IL.mo │ │ ├── jetpack-he_IL.po │ │ ├── jetpack-hr.mo │ │ ├── jetpack-hr.po │ │ ├── jetpack-hu_HU.mo │ │ ├── jetpack-hu_HU.po │ │ ├── jetpack-id_ID.mo │ │ ├── jetpack-id_ID.po │ │ ├── jetpack-it_IT.mo │ │ ├── jetpack-it_IT.po │ │ ├── jetpack-ja.mo │ │ ├── jetpack-ja.po │ │ ├── jetpack-ka_GE.mo │ │ ├── jetpack-ka_GE.po │ │ ├── jetpack-ko_KR.mo │ │ ├── jetpack-ko_KR.po │ │ ├── jetpack-lt_LT.mo │ │ ├── jetpack-lt_LT.po │ │ ├── jetpack-mk_MK.mo │ │ ├── jetpack-mk_MK.po │ │ ├── jetpack-ms_MY.mo │ │ ├── jetpack-ms_MY.po │ │ ├── jetpack-my_MM.mo │ │ ├── jetpack-my_MM.po │ │ ├── jetpack-nb_NO.mo │ │ ├── jetpack-nb_NO.po │ │ ├── jetpack-nl_NL.mo │ │ ├── jetpack-nl_NL.po │ │ ├── jetpack-nn_NO.mo │ │ ├── jetpack-nn_NO.po │ │ ├── jetpack-pl_PL.mo │ │ ├── jetpack-pl_PL.po │ │ ├── jetpack-pt_BR.mo │ │ ├── jetpack-pt_BR.po │ │ ├── jetpack-pt_PT.mo │ │ ├── jetpack-pt_PT.po │ │ ├── jetpack-ro_RO.mo │ │ ├── jetpack-ro_RO.po │ │ ├── jetpack-ru_RU.mo │ │ ├── jetpack-ru_RU.po │ │ ├── jetpack-sa_IN.mo │ │ ├── jetpack-sa_IN.po │ │ ├── jetpack-si_LK.mo │ │ ├── jetpack-si_LK.po │ │ ├── jetpack-sk_SK.mo │ │ ├── jetpack-sk_SK.po │ │ ├── jetpack-sl_SI.mo │ │ ├── jetpack-sl_SI.po │ │ ├── jetpack-sq.mo │ │ ├── jetpack-sq.po │ │ ├── jetpack-sr_RS.mo │ │ ├── jetpack-sr_RS.po │ │ ├── jetpack-sv_SE.mo │ │ ├── jetpack-sv_SE.po │ │ ├── jetpack-te.mo │ │ ├── jetpack-te.po │ │ ├── jetpack-th.mo │ │ ├── jetpack-th.po │ │ ├── jetpack-tr_TR.mo │ │ ├── jetpack-tr_TR.po │ │ ├── jetpack-uk.mo │ │ ├── jetpack-uk.po │ │ ├── jetpack-ur.mo │ │ ├── jetpack-ur.po │ │ ├── jetpack-vi.mo │ │ ├── jetpack-vi.po │ │ ├── jetpack-zh_CN.mo │ │ ├── jetpack-zh_CN.po │ │ ├── jetpack-zh_TW.mo │ │ └── jetpack-zh_TW.po │ ├── locales.php │ ├── modules │ │ ├── after-the-deadline.php │ │ ├── after-the-deadline │ │ │ ├── atd-autoproofread.js │ │ │ ├── atd-nonvis-editor-plugin.js │ │ │ ├── atd-rtl.css │ │ │ ├── atd-rtl.min.css │ │ │ ├── atd.core.js │ │ │ ├── atd.css │ │ │ ├── atd.min.css │ │ │ ├── button.gif │ │ │ ├── config-options.php │ │ │ ├── config-unignore.php │ │ │ ├── jquery.atd.js │ │ │ ├── proxy.php │ │ │ ├── rtl │ │ │ │ └── atd-rtl.css │ │ │ └── tinymce │ │ │ │ ├── atdbuttontr.gif │ │ │ │ ├── css │ │ │ │ ├── content.css │ │ │ │ └── content.min.css │ │ │ │ ├── editor_plugin.js │ │ │ │ └── plugin.js │ │ ├── carousel.php │ │ ├── carousel │ │ │ ├── images │ │ │ │ ├── arrows-2x.png │ │ │ │ ├── arrows.png │ │ │ │ ├── carousel-likereblog-2x.png │ │ │ │ ├── carousel-likereblog.png │ │ │ │ ├── carousel-link-2x.png │ │ │ │ ├── carousel-link.png │ │ │ │ ├── carousel-sprite-2x.png │ │ │ │ └── carousel-sprite.png │ │ │ ├── jetpack-carousel-ie8fix.css │ │ │ ├── jetpack-carousel.css │ │ │ ├── jetpack-carousel.js │ │ │ ├── jetpack-carousel.php │ │ │ └── rtl │ │ │ │ └── jetpack-carousel-rtl.css │ │ ├── comments.php │ │ ├── comments │ │ │ ├── admin.php │ │ │ ├── base.php │ │ │ └── comments.php │ │ ├── contact-form.php │ │ ├── contact-form │ │ │ ├── admin.php │ │ │ ├── css │ │ │ │ ├── grunion.css │ │ │ │ ├── menu-alter-rtl.css │ │ │ │ ├── menu-alter-rtl.min.css │ │ │ │ ├── menu-alter.css │ │ │ │ ├── menu-alter.min.css │ │ │ │ └── rtl │ │ │ │ │ ├── grunion-rtl.css │ │ │ │ │ └── menu-alter-rtl.css │ │ │ ├── grunion-contact-form.php │ │ │ ├── grunion-form-view.php │ │ │ ├── grunion-omnisearch.php │ │ │ ├── images │ │ │ │ ├── blank-screen-akismet.png │ │ │ │ ├── blank-screen-button.png │ │ │ │ ├── grunion-form-2x.png │ │ │ │ ├── grunion-form.png │ │ │ │ ├── grunion-menu-2x.png │ │ │ │ ├── grunion-menu-big-2x.png │ │ │ │ ├── grunion-menu-big.png │ │ │ │ ├── grunion-menu-hover-2x.png │ │ │ │ ├── grunion-menu-hover.png │ │ │ │ ├── grunion-menu.png │ │ │ │ ├── grunion-remove-field-2x.png │ │ │ │ ├── grunion-remove-field-hover-2x.png │ │ │ │ ├── grunion-remove-field-hover.gif │ │ │ │ ├── grunion-remove-field.gif │ │ │ │ ├── grunion-remove-option-2x.png │ │ │ │ ├── grunion-remove-option-hover-2x.png │ │ │ │ ├── grunion-remove-option-hover.gif │ │ │ │ └── grunion-remove-option.gif │ │ │ ├── js │ │ │ │ ├── grunion-frontend.js │ │ │ │ └── grunion.js │ │ │ └── readme.txt │ │ ├── custom-content-types.php │ │ ├── custom-css.php │ │ ├── custom-css │ │ │ ├── csstidy │ │ │ │ ├── class.csstidy.php │ │ │ │ ├── class.csstidy_ctype.php │ │ │ │ ├── class.csstidy_optimise.php │ │ │ │ ├── class.csstidy_print.php │ │ │ │ ├── cssparse-rtl.css │ │ │ │ ├── cssparse-rtl.min.css │ │ │ │ ├── cssparse.css │ │ │ │ ├── cssparse.min.css │ │ │ │ ├── cssparsed-rtl.css │ │ │ │ ├── cssparsed-rtl.min.css │ │ │ │ ├── cssparsed.css │ │ │ │ ├── cssparsed.min.css │ │ │ │ ├── data-wp.inc.php │ │ │ │ ├── data.inc.php │ │ │ │ ├── lang.inc.php │ │ │ │ └── wordpress-standard.tpl │ │ │ ├── custom-css.php │ │ │ └── custom-css │ │ │ │ ├── css │ │ │ │ ├── codemirror-rtl.css │ │ │ │ ├── codemirror-rtl.min.css │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.min.css │ │ │ │ ├── css-editor.css │ │ │ │ ├── css-editor.min.css │ │ │ │ ├── rtl │ │ │ │ │ └── codemirror-rtl.css │ │ │ │ ├── use-codemirror.css │ │ │ │ └── use-codemirror.min.css │ │ │ │ ├── js │ │ │ │ ├── codemirror.min.js │ │ │ │ ├── css-editor.js │ │ │ │ └── use-codemirror.js │ │ │ │ ├── preprocessors.php │ │ │ │ └── preprocessors │ │ │ │ ├── lessc.inc.php │ │ │ │ └── scss.inc.php │ │ ├── custom-post-types │ │ │ ├── comics.php │ │ │ ├── comics │ │ │ │ ├── admin.css │ │ │ │ ├── comics.css │ │ │ │ ├── comics.js │ │ │ │ └── rtl │ │ │ │ │ └── comics-rtl.css │ │ │ ├── css │ │ │ │ ├── edit-items.css │ │ │ │ ├── many-items.css │ │ │ │ ├── nova-font.css │ │ │ │ ├── nova.css │ │ │ │ └── portfolio-shortcode.css │ │ │ ├── js │ │ │ │ ├── many-items.js │ │ │ │ ├── menu-checkboxes.js │ │ │ │ └── nova-drag-drop.js │ │ │ ├── nova.php │ │ │ ├── portfolios.php │ │ │ └── testimonial.php │ │ ├── debug.php │ │ ├── enhanced-distribution.php │ │ ├── gplus-authorship.php │ │ ├── gravatar-hovercards.php │ │ ├── holiday-snow.php │ │ ├── holiday-snow │ │ │ └── snowstorm.js │ │ ├── infinite-scroll.php │ │ ├── infinite-scroll │ │ │ ├── infinity.css │ │ │ ├── infinity.js │ │ │ ├── infinity.php │ │ │ └── themes │ │ │ │ ├── twentyeleven.css │ │ │ │ ├── twentyeleven.php │ │ │ │ ├── twentyfifteen-rtl.css │ │ │ │ ├── twentyfifteen.css │ │ │ │ ├── twentyfifteen.php │ │ │ │ ├── twentyfourteen.css │ │ │ │ ├── twentyfourteen.php │ │ │ │ ├── twentyten.css │ │ │ │ ├── twentyten.php │ │ │ │ ├── twentythirteen.css │ │ │ │ ├── twentythirteen.php │ │ │ │ ├── twentytwelve.css │ │ │ │ └── twentytwelve.php │ │ ├── json-api.php │ │ ├── latex.php │ │ ├── likes.php │ │ ├── likes │ │ │ ├── post-count-jetpack.js │ │ │ ├── post-count.js │ │ │ ├── queuehandler.js │ │ │ └── style.css │ │ ├── markdown.php │ │ ├── markdown │ │ │ └── easy-markdown.php │ │ ├── minileven.php │ │ ├── minileven │ │ │ ├── images │ │ │ │ └── wp-app-devices.png │ │ │ ├── minileven.php │ │ │ └── theme │ │ │ │ └── pub │ │ │ │ └── minileven │ │ │ │ ├── comments.php │ │ │ │ ├── content-gallery.php │ │ │ │ ├── content.php │ │ │ │ ├── footer.php │ │ │ │ ├── functions.php │ │ │ │ ├── header.php │ │ │ │ ├── image.php │ │ │ │ ├── inc │ │ │ │ ├── custom-header.php │ │ │ │ ├── fonts │ │ │ │ │ ├── genericons-regular-webfont.eot │ │ │ │ │ ├── genericons-regular-webfont.svg │ │ │ │ │ ├── genericons-regular-webfont.ttf │ │ │ │ │ └── genericons-regular-webfont.woff │ │ │ │ ├── template-tags.php │ │ │ │ └── tweaks.php │ │ │ │ ├── index.php │ │ │ │ ├── js │ │ │ │ └── small-menu.js │ │ │ │ ├── page.php │ │ │ │ ├── rtl.css │ │ │ │ ├── screenshot.png │ │ │ │ ├── searchform.php │ │ │ │ ├── sidebar.php │ │ │ │ └── style.css │ │ ├── mobile-push.php │ │ ├── module-extras.php │ │ ├── module-headings.php │ │ ├── module-info.php │ │ ├── monitor.php │ │ ├── notes.php │ │ ├── omnisearch.php │ │ ├── omnisearch │ │ │ ├── omnisearch-comments.php │ │ │ ├── omnisearch-core.php │ │ │ ├── omnisearch-jetpack-rtl.css │ │ │ ├── omnisearch-jetpack-rtl.min.css │ │ │ ├── omnisearch-jetpack.css │ │ │ ├── omnisearch-jetpack.min.css │ │ │ ├── omnisearch-media.php │ │ │ ├── omnisearch-plugins.php │ │ │ ├── omnisearch-posts.php │ │ │ ├── omnisearch-rtl.css │ │ │ ├── omnisearch-rtl.min.css │ │ │ ├── omnisearch.css │ │ │ ├── omnisearch.min.css │ │ │ └── rtl │ │ │ │ ├── omnisearch-jetpack-rtl.css │ │ │ │ └── omnisearch-rtl.css │ │ ├── photon.php │ │ ├── photon │ │ │ └── photon.js │ │ ├── post-by-email.php │ │ ├── post-by-email │ │ │ ├── post-by-email.css │ │ │ ├── post-by-email.js │ │ │ └── post-by-email.min.css │ │ ├── publicize.php │ │ ├── publicize │ │ │ ├── assets │ │ │ │ ├── connected.gif │ │ │ │ ├── facebook-logo.png │ │ │ │ ├── linkedin-logo.png │ │ │ │ ├── path-logo.png │ │ │ │ ├── publicize-fb-2x.png │ │ │ │ ├── publicize-google-2x.png │ │ │ │ ├── publicize-linkedin-2x.png │ │ │ │ ├── publicize-path-2x.png │ │ │ │ ├── publicize-rtl.css │ │ │ │ ├── publicize-rtl.min.css │ │ │ │ ├── publicize-tumblr-2x.png │ │ │ │ ├── publicize-twitter-2x.png │ │ │ │ ├── publicize.css │ │ │ │ ├── publicize.js │ │ │ │ ├── publicize.min.css │ │ │ │ ├── rtl │ │ │ │ │ └── publicize-rtl.css │ │ │ │ ├── spinner.gif │ │ │ │ ├── tumblr-logo.png │ │ │ │ └── twitter-logo.png │ │ │ ├── enhanced-open-graph.php │ │ │ ├── publicize-jetpack.php │ │ │ ├── publicize.php │ │ │ └── ui.php │ │ ├── random-redirect.php │ │ ├── related-posts.php │ │ ├── related-posts │ │ │ ├── jetpack-related-posts.php │ │ │ ├── related-posts.css │ │ │ ├── related-posts.js │ │ │ └── rtl │ │ │ │ └── related-posts-rtl.css │ │ ├── sharedaddy.php │ │ ├── sharedaddy │ │ │ ├── admin-sharing-rtl.css │ │ │ ├── admin-sharing-rtl.min.css │ │ │ ├── admin-sharing.css │ │ │ ├── admin-sharing.js │ │ │ ├── admin-sharing.min.css │ │ │ ├── images │ │ │ │ ├── after-the-deadline@2x.png │ │ │ │ ├── comments@2x.png │ │ │ │ ├── contact-form@2x.png │ │ │ │ ├── custom.png │ │ │ │ ├── custom@2x.png │ │ │ │ ├── designfloat.png │ │ │ │ ├── digg.png │ │ │ │ ├── digg@2x.png │ │ │ │ ├── divider.png │ │ │ │ ├── divider@2x.png │ │ │ │ ├── draggy.png │ │ │ │ ├── draggy@2x.png │ │ │ │ ├── email.png │ │ │ │ ├── email@2x.png │ │ │ │ ├── ember.png │ │ │ │ ├── enhanced-distribution@2x.png │ │ │ │ ├── facebook.png │ │ │ │ ├── facebook@2x.png │ │ │ │ ├── feed.png │ │ │ │ ├── googleplus1.png │ │ │ │ ├── googleplus1@2x.png │ │ │ │ ├── icon-facebook-2x.png │ │ │ │ ├── icon-facebook.png │ │ │ │ ├── icon-googleplus-2x.png │ │ │ │ ├── icon-googleplus.png │ │ │ │ ├── icon-twitter-2x.png │ │ │ │ ├── icon-twitter.png │ │ │ │ ├── icon-wordpress-2x.png │ │ │ │ ├── icon-wordpress.png │ │ │ │ ├── kindle.png │ │ │ │ ├── kindle@2x.png │ │ │ │ ├── linkedin-horizontal.png │ │ │ │ ├── linkedin-horizontal@2x.png │ │ │ │ ├── linkedin-nocount.png │ │ │ │ ├── linkedin-nocount@2x.png │ │ │ │ ├── linkedin-smart.png │ │ │ │ ├── linkedin-smart@2x.png │ │ │ │ ├── linkedin-vertical.png │ │ │ │ ├── linkedin-vertical@2x.png │ │ │ │ ├── linkedin.png │ │ │ │ ├── linkedin@2x.png │ │ │ │ ├── loading.gif │ │ │ │ ├── more.png │ │ │ │ ├── more@2x.png │ │ │ │ ├── pinterest.png │ │ │ │ ├── pinterest@2x.png │ │ │ │ ├── pocket.png │ │ │ │ ├── pocket@2x.png │ │ │ │ ├── print.png │ │ │ │ ├── print@2x.png │ │ │ │ ├── reddit.png │ │ │ │ ├── reddit@2x.png │ │ │ │ ├── rss.png │ │ │ │ ├── rss@2x.png │ │ │ │ ├── share-bg.png │ │ │ │ ├── sharing-hidden.png │ │ │ │ ├── sharing-hidden@2x.png │ │ │ │ ├── smart-digg.png │ │ │ │ ├── smart-digg@2x.png │ │ │ │ ├── smart-facebook.png │ │ │ │ ├── smart-facebook@2x.png │ │ │ │ ├── smart-googleplus1.png │ │ │ │ ├── smart-googleplus1@2x.png │ │ │ │ ├── smart-like.png │ │ │ │ ├── smart-like@2x.png │ │ │ │ ├── smart-pinterest.png │ │ │ │ ├── smart-pinterest@2x.png │ │ │ │ ├── smart-pocket.png │ │ │ │ ├── smart-pocket@2x.png │ │ │ │ ├── smart-reddit.png │ │ │ │ ├── smart-reddit@2x.png │ │ │ │ ├── smart-stumbleupon.png │ │ │ │ ├── smart-stumbleupon@2x.png │ │ │ │ ├── smart-tumblr.png │ │ │ │ ├── smart-tumblr@2x.png │ │ │ │ ├── smart-twitter.png │ │ │ │ ├── smart-twitter@2x.png │ │ │ │ ├── stumbleupon.png │ │ │ │ ├── stumbleupon@2x.png │ │ │ │ ├── tumblr.png │ │ │ │ ├── tumblr@2x.png │ │ │ │ ├── twitter.png │ │ │ │ ├── twitter@2x.png │ │ │ │ ├── wordpress.png │ │ │ │ └── wordpress@2x.png │ │ │ ├── readme.txt │ │ │ ├── recaptchalib.php │ │ │ ├── screenshot-1.jpg │ │ │ ├── screenshot-2.jpg │ │ │ ├── sharedaddy.php │ │ │ ├── sharedaddy.pot │ │ │ ├── sharing-service.php │ │ │ ├── sharing-sources.php │ │ │ ├── sharing.css │ │ │ ├── sharing.js │ │ │ └── sharing.php │ │ ├── shortcodes.php │ │ ├── shortcodes │ │ │ ├── archives.php │ │ │ ├── audio.php │ │ │ ├── bandcamp.php │ │ │ ├── blip.php │ │ │ ├── css │ │ │ │ ├── recipes-print.css │ │ │ │ ├── recipes.css │ │ │ │ ├── rtl │ │ │ │ │ ├── recipes-rtl.css │ │ │ │ │ └── slideshow-shortcode-rtl.css │ │ │ │ ├── slideshow-shortcode.css │ │ │ │ └── style.css │ │ │ ├── dailymotion.php │ │ │ ├── diggthis.php │ │ │ ├── facebook.php │ │ │ ├── flickr.php │ │ │ ├── gist.php │ │ │ ├── googlemaps.php │ │ │ ├── googleplus.php │ │ │ ├── googlevideo.php │ │ │ ├── images │ │ │ │ ├── collapse.png │ │ │ │ ├── expand.png │ │ │ │ └── slide-nav.png │ │ │ ├── img │ │ │ │ ├── slideshow-controls-2x.png │ │ │ │ ├── slideshow-controls.png │ │ │ │ └── slideshow-loader.gif │ │ │ ├── js │ │ │ │ ├── audio-shortcode.js │ │ │ │ ├── jmpress.js │ │ │ │ ├── jmpress.min.js │ │ │ │ ├── jquery.cycle.js │ │ │ │ ├── main.js │ │ │ │ ├── recipes-printthis.js │ │ │ │ ├── recipes.js │ │ │ │ └── slideshow-shortcode.js │ │ │ ├── medium.php │ │ │ ├── mixcloud.php │ │ │ ├── polldaddy.php │ │ │ ├── presentations.php │ │ │ ├── recipe.php │ │ │ ├── scribd.php │ │ │ ├── slideshare.php │ │ │ ├── slideshow.php │ │ │ ├── soundcloud.php │ │ │ ├── ted.php │ │ │ ├── twitter-timeline.php │ │ │ ├── videopress.php │ │ │ ├── vimeo.php │ │ │ ├── vine.php │ │ │ └── youtube.php │ │ ├── shortlinks.php │ │ ├── site-icon.php │ │ ├── site-icon │ │ │ ├── browser.png │ │ │ ├── css │ │ │ │ └── site-icon-admin.css │ │ │ ├── jetpack-site-icon.php │ │ │ ├── js │ │ │ │ ├── site-icon-admin.js │ │ │ │ └── site-icon-crop.js │ │ │ ├── site-icon-functions.php │ │ │ └── upload-site-icon.php │ │ ├── social-links.php │ │ ├── sso.php │ │ ├── stats.php │ │ ├── subscriptions.php │ │ ├── subscriptions │ │ │ └── subscriptions.css │ │ ├── theme-tools.php │ │ ├── theme-tools │ │ │ ├── compat │ │ │ │ ├── twentyfifteen-rtl.css │ │ │ │ ├── twentyfifteen.css │ │ │ │ ├── twentyfifteen.php │ │ │ │ └── twentyfourteen.php │ │ │ ├── featured-content.php │ │ │ ├── infinite-scroll.php │ │ │ ├── js │ │ │ │ └── suggest.js │ │ │ ├── random-redirect.php │ │ │ ├── responsive-videos.php │ │ │ ├── responsive-videos │ │ │ │ ├── responsive-videos.js │ │ │ │ └── responsive-videos.min.js │ │ │ ├── site-logo.php │ │ │ ├── site-logo │ │ │ │ ├── css │ │ │ │ │ ├── site-logo-control-rtl.css │ │ │ │ │ ├── site-logo-control-rtl.min.css │ │ │ │ │ ├── site-logo-control.css │ │ │ │ │ └── site-logo-control.min.css │ │ │ │ ├── inc │ │ │ │ │ ├── class-site-logo-control.php │ │ │ │ │ ├── class-site-logo.php │ │ │ │ │ ├── compat.php │ │ │ │ │ └── functions.php │ │ │ │ └── js │ │ │ │ │ ├── site-logo-control.js │ │ │ │ │ ├── site-logo-control.min.js │ │ │ │ │ ├── site-logo-header-text.js │ │ │ │ │ ├── site-logo-header-text.min.js │ │ │ │ │ ├── site-logo.js │ │ │ │ │ └── site-logo.min.js │ │ │ └── social-links.php │ │ ├── tiled-gallery.php │ │ ├── tiled-gallery │ │ │ ├── math │ │ │ │ └── class-constrained-array-rounding.php │ │ │ ├── tiled-gallery.php │ │ │ └── tiled-gallery │ │ │ │ ├── rtl │ │ │ │ └── tiled-gallery-rtl.css │ │ │ │ ├── templates │ │ │ │ ├── carousel-container.php │ │ │ │ ├── circle-layout.php │ │ │ │ ├── partials │ │ │ │ │ ├── carousel-image-args.php │ │ │ │ │ └── item.php │ │ │ │ ├── rectangular-layout.php │ │ │ │ └── square-layout.php │ │ │ │ ├── tiled-gallery-circle.php │ │ │ │ ├── tiled-gallery-item.php │ │ │ │ ├── tiled-gallery-layout.php │ │ │ │ ├── tiled-gallery-rectangular.php │ │ │ │ ├── tiled-gallery-shape.php │ │ │ │ ├── tiled-gallery-square.php │ │ │ │ ├── tiled-gallery.css │ │ │ │ └── tiled-gallery.js │ │ ├── tonesque.php │ │ ├── vaultpress.php │ │ ├── verification-tools.php │ │ ├── verification-tools │ │ │ └── blog-verification-tools.php │ │ ├── videopress.php │ │ ├── videopress │ │ │ ├── class.videopress-player.php │ │ │ ├── class.videopress-video.php │ │ │ ├── shortcode.php │ │ │ ├── videopress-admin-rtl.css │ │ │ ├── videopress-admin-rtl.min.css │ │ │ ├── videopress-admin.css │ │ │ ├── videopress-admin.js │ │ │ ├── videopress-admin.min.css │ │ │ └── videopress.php │ │ ├── widget-visibility.php │ │ ├── widget-visibility │ │ │ ├── widget-conditions.php │ │ │ └── widget-conditions │ │ │ │ ├── rtl │ │ │ │ └── widget-conditions-rtl.css │ │ │ │ ├── widget-conditions-rtl.css │ │ │ │ ├── widget-conditions-rtl.min.css │ │ │ │ ├── widget-conditions.css │ │ │ │ ├── widget-conditions.js │ │ │ │ └── widget-conditions.min.css │ │ ├── widgets.php │ │ ├── widgets │ │ │ ├── facebook-likebox.php │ │ │ ├── gallery.php │ │ │ ├── gallery │ │ │ │ ├── css │ │ │ │ │ ├── admin-rtl.css │ │ │ │ │ ├── admin-rtl.min.css │ │ │ │ │ ├── admin.css │ │ │ │ │ ├── admin.min.css │ │ │ │ │ └── rtl │ │ │ │ │ │ └── admin-rtl.css │ │ │ │ ├── js │ │ │ │ │ ├── admin.js │ │ │ │ │ └── gallery.js │ │ │ │ └── templates │ │ │ │ │ └── form.php │ │ │ ├── gravatar-profile.css │ │ │ ├── gravatar-profile.php │ │ │ ├── image-widget.php │ │ │ ├── image-widget │ │ │ │ └── style.css │ │ │ ├── readmill.php │ │ │ ├── rsslinks-widget.php │ │ │ ├── top-posts.php │ │ │ ├── twitter-timeline.php │ │ │ ├── widget-grid-and-list.css │ │ │ ├── wordpress-post-widget.php │ │ │ └── wordpress-post-widget │ │ │ │ └── style.css │ │ ├── wpcc.php │ │ └── wpgroho.js │ ├── readme.txt │ ├── require-lib.php │ ├── scss │ │ ├── _utilities │ │ │ ├── _accessibility.scss │ │ │ ├── _clearings.scss │ │ │ ├── _ie.scss │ │ │ ├── _normalize.scss │ │ │ ├── _print.scss │ │ │ └── mixins │ │ │ │ ├── _arrows.scss │ │ │ │ ├── _breakpoint.scss │ │ │ │ ├── _custom-scrollbar.scss │ │ │ │ ├── _full-width-bars.scss │ │ │ │ ├── _gradient--vertical.scss │ │ │ │ ├── _ie__gradient--vertical.scss │ │ │ │ ├── _image-replacement.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _retina-background.scss │ │ │ │ └── _sections.scss │ │ ├── atoms │ │ │ ├── _animations.scss │ │ │ ├── _buttons.scss │ │ │ ├── _media.scss │ │ │ ├── colors │ │ │ │ └── _colors.scss │ │ │ ├── icons │ │ │ │ ├── _automatticons.scss │ │ │ │ └── _jetpack.scss │ │ │ └── typography │ │ │ │ ├── _functions.scss │ │ │ │ ├── _typography.scss │ │ │ │ └── _variables.scss │ │ ├── jetpack-admin.scss │ │ ├── jetpack-banners.scss │ │ ├── jetpack-icons.scss │ │ ├── molecules │ │ │ └── _nav-horizontal.scss │ │ ├── organisms │ │ │ └── _banners.scss │ │ └── templates │ │ │ ├── _main.scss │ │ │ └── _settings.scss │ ├── uninstall.php │ ├── views │ │ └── admin │ │ │ ├── admin-page.php │ │ │ ├── landing-page-templates.php │ │ │ ├── module-modal-template.php │ │ │ ├── must-connect-main-blog.php │ │ │ ├── network-activated-notice.php │ │ │ ├── network-admin-alert.php │ │ │ ├── network-admin-footer.php │ │ │ ├── network-admin-header.php │ │ │ └── network-settings.php │ └── wpml-config.xml │ ├── microblog-poster │ ├── fancybox │ │ ├── blank.gif │ │ ├── fancy_close.png │ │ ├── fancy_loading.png │ │ ├── fancy_nav_left.png │ │ ├── fancy_nav_right.png │ │ ├── fancy_shadow_e.png │ │ ├── fancy_shadow_n.png │ │ ├── fancy_shadow_ne.png │ │ ├── fancy_shadow_nw.png │ │ ├── fancy_shadow_s.png │ │ ├── fancy_shadow_se.png │ │ ├── fancy_shadow_sw.png │ │ ├── fancy_shadow_w.png │ │ ├── fancy_title_left.png │ │ ├── fancy_title_main.png │ │ ├── fancy_title_over.png │ │ ├── fancy_title_right.png │ │ ├── fancybox-x.png │ │ ├── fancybox-y.png │ │ ├── fancybox.png │ │ ├── jquery.easing-1.3.pack.js │ │ ├── jquery.fancybox-1.3.4.css │ │ ├── jquery.fancybox-1.3.4.js │ │ ├── jquery.fancybox-1.3.4.pack.js │ │ └── jquery.mousewheel-3.0.4.pack.js │ ├── images │ │ ├── adfly_icon.png │ │ ├── adfocus_icon.png │ │ ├── bitly_icon.png │ │ ├── blogger_icon.png │ │ ├── delicious_icon.png │ │ ├── diigo_icon.png │ │ ├── facebook_icon.png │ │ ├── friendfeed_icon.png │ │ ├── googl_icon.png │ │ ├── instapaper_icon.png │ │ ├── linkedin_icon.png │ │ ├── plurk_icon.png │ │ ├── ppw_icon.png │ │ ├── tumblr_icon.png │ │ └── twitter_icon.png │ ├── microblogposter.php │ ├── microblogposter_bitly.php │ ├── microblogposter_curl.php │ ├── microblogposter_googl.php │ ├── microblogposter_oauth.php │ ├── microblogposter_options.php │ └── readme.txt │ ├── only-tweet-like-share-and-google-1 │ ├── readme.txt │ └── tweet-like-plusone.php │ ├── paypal-donations │ ├── assets │ │ ├── tabs.css │ │ └── tabs.js │ ├── lang │ │ ├── paypal-donations-da_DK.mo │ │ ├── paypal-donations-da_DK.po │ │ ├── paypal-donations-de_DE.mo │ │ ├── paypal-donations-de_DE.po │ │ ├── paypal-donations-es_ES.mo │ │ ├── paypal-donations-es_ES.po │ │ ├── paypal-donations-fr_FR.mo │ │ ├── paypal-donations-fr_FR.po │ │ ├── paypal-donations-he_IL.mo │ │ ├── paypal-donations-he_IL.po │ │ ├── paypal-donations-it_IT.mo │ │ ├── paypal-donations-it_IT.po │ │ ├── paypal-donations-lt_LT.mo │ │ ├── paypal-donations-lt_LT.po │ │ ├── paypal-donations-ms_MY.mo │ │ ├── paypal-donations-ms_MY.po │ │ ├── paypal-donations-nb_NO.mo │ │ ├── paypal-donations-nb_NO.po │ │ ├── paypal-donations-nl_NL.mo │ │ ├── paypal-donations-nl_NL.po │ │ ├── paypal-donations-nn_NO.mo │ │ ├── paypal-donations-nn_NO.po │ │ ├── paypal-donations-ro_RO.mo │ │ ├── paypal-donations-ro_RO.po │ │ ├── paypal-donations-ru_RU.mo │ │ ├── paypal-donations-ru_RU.po │ │ ├── paypal-donations-sq_AL.mo │ │ ├── paypal-donations-sq_AL.po │ │ ├── paypal-donations-sv_SE.mo │ │ ├── paypal-donations-sv_SE.po │ │ ├── paypal-donations-tr_TR.mo │ │ ├── paypal-donations-tr_TR.po │ │ └── paypal-donations.pot │ ├── paypal-donations.php │ ├── paypal_utility.php │ ├── readme.txt │ ├── src │ │ └── PayPalDonations │ │ │ ├── Admin.php │ │ │ ├── Help.php │ │ │ ├── View.php │ │ │ └── Widget.php │ └── views │ │ ├── admin.php │ │ ├── paypal-button.php │ │ └── widget-form.php │ ├── roost-for-bloggers │ ├── includes │ │ ├── class-roost-api.php │ │ ├── class-roost-bbpress.php │ │ └── class-roost-core.php │ ├── layout │ │ ├── admin.php │ │ ├── css │ │ │ └── rooststyle.css │ │ ├── images │ │ │ ├── roost-arrow-white.png │ │ │ ├── roost-arrow.png │ │ │ ├── roost-icon-25.png │ │ │ ├── roost-plugin-sprite.png │ │ │ ├── roost-red-logo.png │ │ │ ├── roost_logo.png │ │ │ └── roost_thumb.png │ │ └── js │ │ │ ├── roostGoogleFont.js │ │ │ ├── roostbbp.js │ │ │ └── roostscript.js │ ├── readme.txt │ ├── roost.php │ └── uninstall.php │ ├── stag-custom-sidebars │ ├── assets │ │ ├── css │ │ │ ├── stag-custom-sidebars-wp38plus.css │ │ │ └── stag-custom-sidebars.css │ │ └── js │ │ │ ├── stag-custom-sidebars.coffee │ │ │ └── stag-custom-sidebars.js │ ├── languages │ │ ├── stag.mo │ │ └── stag.pot │ ├── readme.txt │ ├── stag-custom-sidebars.php │ └── uninstall.php │ ├── stagtools │ ├── README.md │ ├── assets │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ ├── menu.css │ │ │ ├── stag-admin-options.css │ │ │ └── stag-shortcodes.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── img │ │ │ ├── sprite-popup.png │ │ │ ├── stag-2x.png │ │ │ └── stag.png │ │ ├── js │ │ │ ├── editor_plugin.js │ │ │ ├── plugin-lang.php │ │ │ ├── plugin.js │ │ │ ├── shortcodes_plugins.js │ │ │ └── stag-shortcode-scripts.js │ │ └── scss │ │ │ ├── _preboot.scss │ │ │ ├── font-awesome │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _extras.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _spinning.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ │ └── stag-shortcodes.scss │ ├── config.rb │ ├── includes │ │ ├── post-type │ │ │ ├── portfolio.php │ │ │ ├── project.php │ │ │ ├── slides.php │ │ │ ├── team.php │ │ │ └── testimonials.php │ │ ├── settings │ │ │ └── settings.php │ │ └── widgets │ │ │ ├── twitteroauth.php │ │ │ ├── widget-dribbble.php │ │ │ ├── widget-flickr.php │ │ │ ├── widget-instagram.php │ │ │ └── widget-twitter.php │ ├── languages │ │ ├── stagtools.mo │ │ └── stagtools.pot │ ├── readme.txt │ ├── shortcodes │ │ ├── config.php │ │ ├── shortcode-class.php │ │ ├── shortcodes.php │ │ └── stag-shortcodes.php │ ├── stagtools.php │ └── uninstall.php │ ├── syntaxhighlighter-evolved-spacegray │ ├── README.txt │ ├── ScreenShot01.png │ ├── ScreenShot02.png │ ├── index.php │ ├── shThemeSpacegray.css │ ├── shThemeSpacegrayLight.css │ └── syntaxhighlighter-spacegray.php │ ├── syntaxhighlighter │ ├── localization │ │ ├── _syntaxhighlighter-template.po │ │ ├── syntaxhighlighter-da_DK.mo │ │ ├── syntaxhighlighter-da_DK.po │ │ ├── syntaxhighlighter-de_DE.mo │ │ ├── syntaxhighlighter-de_DE.po │ │ ├── syntaxhighlighter-it_IT.mo │ │ ├── syntaxhighlighter-it_IT.po │ │ ├── syntaxhighlighter-ja.mo │ │ ├── syntaxhighlighter-ja.po │ │ ├── syntaxhighlighter-tr_TR.mo │ │ ├── syntaxhighlighter-tr_TR.po │ │ ├── syntaxhighlighter-uk.mo │ │ ├── syntaxhighlighter-uk.po │ │ ├── syntaxhighlighter-zh_CN.mo │ │ └── syntaxhighlighter-zh_CN.po │ ├── readme.md │ ├── readme.txt │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── syntaxhighlighter.js │ ├── syntaxhighlighter.php │ ├── syntaxhighlighter2 │ │ ├── LGPLv3.txt │ │ ├── scripts │ │ │ ├── clipboard.swf │ │ │ ├── shBrushAS3.js │ │ │ ├── shBrushBash.js │ │ │ ├── shBrushCSharp.js │ │ │ ├── shBrushColdFusion.js │ │ │ ├── shBrushCpp.js │ │ │ ├── shBrushCss.js │ │ │ ├── shBrushDelphi.js │ │ │ ├── shBrushDiff.js │ │ │ ├── shBrushErlang.js │ │ │ ├── shBrushGroovy.js │ │ │ ├── shBrushJScript.js │ │ │ ├── shBrushJava.js │ │ │ ├── shBrushJavaFX.js │ │ │ ├── shBrushPerl.js │ │ │ ├── shBrushPhp.js │ │ │ ├── shBrushPlain.js │ │ │ ├── shBrushPowerShell.js │ │ │ ├── shBrushPython.js │ │ │ ├── shBrushRuby.js │ │ │ ├── shBrushScala.js │ │ │ ├── shBrushSql.js │ │ │ ├── shBrushVb.js │ │ │ ├── shBrushXml.js │ │ │ ├── shCore.js │ │ │ └── shLegacy.js │ │ └── styles │ │ │ ├── help.png │ │ │ ├── magnifier.png │ │ │ ├── page_white_code.png │ │ │ ├── page_white_copy.png │ │ │ ├── printer.png │ │ │ ├── shCore.css │ │ │ ├── shThemeDefault.css │ │ │ ├── shThemeDjango.css │ │ │ ├── shThemeEclipse.css │ │ │ ├── shThemeEmacs.css │ │ │ ├── shThemeFadeToGrey.css │ │ │ ├── shThemeMidnight.css │ │ │ ├── shThemeRDark.css │ │ │ └── wrapping.png │ ├── syntaxhighlighter3 │ │ ├── LGPL-LICENSE │ │ ├── MIT-LICENSE │ │ ├── scripts │ │ │ ├── shAutoloader.js │ │ │ ├── shBrushAS3.js │ │ │ ├── shBrushAppleScript.js │ │ │ ├── shBrushBash.js │ │ │ ├── shBrushCSharp.js │ │ │ ├── shBrushColdFusion.js │ │ │ ├── shBrushCpp.js │ │ │ ├── shBrushCss.js │ │ │ ├── shBrushDelphi.js │ │ │ ├── shBrushDiff.js │ │ │ ├── shBrushErlang.js │ │ │ ├── shBrushGroovy.js │ │ │ ├── shBrushJScript.js │ │ │ ├── shBrushJava.js │ │ │ ├── shBrushJavaFX.js │ │ │ ├── shBrushPerl.js │ │ │ ├── shBrushPhp.js │ │ │ ├── shBrushPlain.js │ │ │ ├── shBrushPowerShell.js │ │ │ ├── shBrushPython.js │ │ │ ├── shBrushRuby.js │ │ │ ├── shBrushSass.js │ │ │ ├── shBrushScala.js │ │ │ ├── shBrushSql.js │ │ │ ├── shBrushVb.js │ │ │ ├── shBrushXml.js │ │ │ ├── shCore.js │ │ │ └── shLegacy.js │ │ └── styles │ │ │ ├── shCore.css │ │ │ ├── shCoreDefault.css │ │ │ ├── shCoreDjango.css │ │ │ ├── shCoreEclipse.css │ │ │ ├── shCoreEmacs.css │ │ │ ├── shCoreFadeToGrey.css │ │ │ ├── shCoreMDUltra.css │ │ │ ├── shCoreMidnight.css │ │ │ ├── shCoreRDark.css │ │ │ ├── shThemeDefault.css │ │ │ ├── shThemeDjango.css │ │ │ ├── shThemeEclipse.css │ │ │ ├── shThemeEmacs.css │ │ │ ├── shThemeFadeToGrey.css │ │ │ ├── shThemeMDUltra.css │ │ │ ├── shThemeMidnight.css │ │ │ └── shThemeRDark.css │ ├── syntaxhighlighter_mce-4.js │ ├── syntaxhighlighter_mce.js │ └── third-party-brushes │ │ ├── _readme.txt │ │ ├── shBrushClojure.js │ │ ├── shBrushFSharp.js │ │ ├── shBrushLatex.js │ │ ├── shBrushMatlabKey.js │ │ ├── shBrushObjC.js │ │ └── shBrushR.js │ ├── wens-social-links │ ├── css │ │ ├── admin-style.css │ │ └── main-style.css │ ├── functions.php │ ├── images │ │ ├── social-media-follower.png │ │ └── socials.png │ ├── js │ │ ├── custom.js │ │ └── jquery.ui.tooltip.js │ ├── options.php │ ├── readme.txt │ └── social-links.php │ ├── wordpress-seo │ ├── CONTRIBUTING.md │ ├── README.md │ ├── admin │ │ ├── TextStatistics.php │ │ ├── ajax.php │ │ ├── class-admin.php │ │ ├── class-bulk-description-editor-list-table.php │ │ ├── class-bulk-editor-list-table.php │ │ ├── class-bulk-title-editor-list-table.php │ │ ├── class-config.php │ │ ├── class-metabox.php │ │ ├── class-opengraph-admin.php │ │ ├── class-pointers.php │ │ ├── class-sitemaps-admin.php │ │ ├── class-snippet-preview.php │ │ ├── class-taxonomy.php │ │ ├── class-tracking.php │ │ ├── class-yoast-notification-center.php │ │ ├── class-yoast-notification.php │ │ ├── index.php │ │ ├── license-manager │ │ │ ├── README.md │ │ │ ├── class-api-request.php │ │ │ ├── class-license-manager.php │ │ │ ├── class-plugin-license-manager.php │ │ │ ├── class-plugin-update-manager.php │ │ │ ├── class-product.php │ │ │ ├── class-theme-license-manager.php │ │ │ ├── class-theme-update-manager.php │ │ │ ├── class-update-manager.php │ │ │ ├── index.php │ │ │ ├── samples │ │ │ │ ├── index.php │ │ │ │ ├── sample-plugin.php │ │ │ │ ├── sample-product.php │ │ │ │ └── sample-theme-functions.php │ │ │ └── views │ │ │ │ ├── form.php │ │ │ │ ├── index.php │ │ │ │ └── script.php │ │ └── pages │ │ │ ├── bulk-editor.php │ │ │ ├── dashboard.php │ │ │ ├── files.php │ │ │ ├── import.php │ │ │ ├── internal-links.php │ │ │ ├── licenses.php │ │ │ ├── metas.php │ │ │ ├── network.php │ │ │ ├── permalinks.php │ │ │ ├── rss.php │ │ │ ├── social.php │ │ │ └── xml-sitemaps.php │ ├── changelog.txt │ ├── css │ │ ├── adminbar.css │ │ ├── adminbar.min.css │ │ ├── edit-page.css │ │ ├── edit-page.min.css │ │ ├── index.php │ │ ├── metabox-classic.css │ │ ├── metabox-classic.min.css │ │ ├── metabox-fresh.css │ │ ├── metabox-fresh.min.css │ │ ├── metabox-tabs.css │ │ ├── metabox-tabs.min.css │ │ ├── taxonomy-meta.css │ │ ├── taxonomy-meta.min.css │ │ ├── wpseo-rtl.css │ │ ├── wpseo-rtl.min.css │ │ ├── xml-sitemap-xsl.php │ │ ├── yst_plugin_tools.css │ │ └── yst_plugin_tools.min.css │ ├── frontend │ │ ├── class-breadcrumbs.php │ │ ├── class-frontend.php │ │ ├── class-googleplus.php │ │ ├── class-opengraph.php │ │ ├── class-twitter.php │ │ └── index.php │ ├── images │ │ ├── Local_130x100.png │ │ ├── News_SEO.png │ │ ├── Premium_130x100.png │ │ ├── Video_130x100.png │ │ ├── Woo_130x100.png │ │ ├── banner-local-seo.png │ │ ├── banner-news-seo.png │ │ ├── banner-premium-seo.png │ │ ├── banner-video-seo.png │ │ ├── banner-website-review.png │ │ ├── banner-woocommerce-seo.png │ │ ├── index.php │ │ ├── question-mark.png │ │ └── waiting.gif │ ├── inc │ │ ├── class-rewrite.php │ │ ├── class-sitemaps.php │ │ ├── class-wpseo-meta.php │ │ ├── class-wpseo-options.php │ │ ├── class-wpseo-replace-vars.php │ │ ├── index.php │ │ ├── wpseo-functions.php │ │ └── wpseo-non-ajax-functions.php │ ├── index.php │ ├── js │ │ ├── index.php │ │ ├── jquery.qtip.min.js │ │ ├── jquery.tablesorter.min.js │ │ ├── wp-seo-admin-global.js │ │ ├── wp-seo-admin-global.min.js │ │ ├── wp-seo-admin-media.js │ │ ├── wp-seo-admin-media.min.js │ │ ├── wp-seo-admin.js │ │ ├── wp-seo-admin.min.js │ │ ├── wp-seo-bulk-editor.js │ │ ├── wp-seo-bulk-editor.min.js │ │ ├── wp-seo-metabox.js │ │ └── wp-seo-metabox.min.js │ ├── languages │ │ ├── index.php │ │ ├── wordpress-seo-ar.mo │ │ ├── wordpress-seo-bg.mo │ │ ├── wordpress-seo-bg_BG.mo │ │ ├── wordpress-seo-bs.mo │ │ ├── wordpress-seo-bs_BA.mo │ │ ├── wordpress-seo-ca.mo │ │ ├── wordpress-seo-cs_CZ.mo │ │ ├── wordpress-seo-da_DK.mo │ │ ├── wordpress-seo-de_DE.mo │ │ ├── wordpress-seo-el_GR.mo │ │ ├── wordpress-seo-es_ES.mo │ │ ├── wordpress-seo-es_VE.mo │ │ ├── wordpress-seo-fa_IR.mo │ │ ├── wordpress-seo-fi.mo │ │ ├── wordpress-seo-fr_FR.mo │ │ ├── wordpress-seo-he_IL.mo │ │ ├── wordpress-seo-hi_IN.mo │ │ ├── wordpress-seo-hr.mo │ │ ├── wordpress-seo-hu.mo │ │ ├── wordpress-seo-hu_HU.mo │ │ ├── wordpress-seo-id_ID.mo │ │ ├── wordpress-seo-it_IT.mo │ │ ├── wordpress-seo-ja.mo │ │ ├── wordpress-seo-ko_KR.mo │ │ ├── wordpress-seo-ms_MY.mo │ │ ├── wordpress-seo-nb_NO.mo │ │ ├── wordpress-seo-nl_NL.mo │ │ ├── wordpress-seo-pl_PL.mo │ │ ├── wordpress-seo-pt_BR.mo │ │ ├── wordpress-seo-pt_PT.mo │ │ ├── wordpress-seo-ro_RO.mo │ │ ├── wordpress-seo-ru_RU.mo │ │ ├── wordpress-seo-sk_SK.mo │ │ ├── wordpress-seo-sl_SI.mo │ │ ├── wordpress-seo-sv_SE.mo │ │ ├── wordpress-seo-tr_TK.mo │ │ ├── wordpress-seo-tr_TR.mo │ │ ├── wordpress-seo-zh_CN.mo │ │ └── wordpress-seo.pot │ ├── license.txt │ ├── readme.txt │ ├── wp-seo-main.php │ ├── wp-seo.php │ └── wpml-config.xml │ ├── wp-super-cache │ ├── Changelog.txt │ ├── advanced-cache.php │ ├── languages │ │ ├── wp-super-cache-be_BY.mo │ │ ├── wp-super-cache-be_BY.po │ │ ├── wp-super-cache-de_DE.mo │ │ ├── wp-super-cache-de_DE.po │ │ ├── wp-super-cache-es_ES.mo │ │ ├── wp-super-cache-es_ES.po │ │ ├── wp-super-cache-fr_FR.mo │ │ ├── wp-super-cache-fr_FR.po │ │ ├── wp-super-cache-it_IT.mo │ │ ├── wp-super-cache-it_IT.po │ │ ├── wp-super-cache-ja.mo │ │ ├── wp-super-cache-ja.po │ │ ├── wp-super-cache-lt_LT.mo │ │ ├── wp-super-cache-lt_LT.po │ │ ├── wp-super-cache-ro_RO.mo │ │ ├── wp-super-cache-ro_RO.po │ │ ├── wp-super-cache-ru_RU.mo │ │ ├── wp-super-cache-ru_RU.po │ │ ├── wp-super-cache-sr_RS.mo │ │ ├── wp-super-cache-sr_RS.po │ │ ├── wp-super-cache-sv_SE.mo │ │ ├── wp-super-cache-sv_SE.po │ │ ├── wp-super-cache-tr_TR.mo │ │ ├── wp-super-cache-tr_TR.po │ │ ├── wp-super-cache-ua_UA.mo │ │ ├── wp-super-cache-ua_UA.po │ │ ├── wp-super-cache-uk.mo │ │ ├── wp-super-cache-uk.po │ │ ├── wp-super-cache-zh_CN.mo │ │ ├── wp-super-cache-zh_CN.po │ │ ├── wp-super-cache-zh_TW.mo │ │ └── wp-super-cache-zh_TW.po │ ├── ossdl-cdn.php │ ├── plugins │ │ ├── awaitingmoderation.php │ │ ├── badbehaviour.php │ │ ├── domain-mapping.php │ │ ├── dynamic-cache-test.php │ │ ├── jetpack.php │ │ ├── multisite.php │ │ ├── searchengine.php │ │ └── wptouch.php │ ├── readme.txt │ ├── wp-cache-base.php │ ├── wp-cache-config-sample.php │ ├── wp-cache-phase1.php │ ├── wp-cache-phase2.php │ ├── wp-cache.php │ └── wp-super-cache.pot │ └── wpfront-user-role-editor │ ├── classes │ ├── base │ │ ├── class-wpfront-base-menu.php │ │ ├── class-wpfront-base.php │ │ ├── class-wpfront-entity-base.php │ │ ├── class-wpfront-options-base.php │ │ ├── class-wpfront-static.php │ │ └── images │ │ │ └── wpfront_menu.png │ ├── class-wpfront-user-role-editor-add-edit.php │ ├── class-wpfront-user-role-editor-assign-roles.php │ ├── class-wpfront-user-role-editor-controller-base.php │ ├── class-wpfront-user-role-editor-delete.php │ ├── class-wpfront-user-role-editor-entity-base.php │ ├── class-wpfront-user-role-editor-go-pro.php │ ├── class-wpfront-user-role-editor-list.php │ ├── class-wpfront-user-role-editor-options.php │ ├── class-wpfront-user-role-editor-restore.php │ ├── class-wpfront-user-role-editor.php │ └── entities │ │ └── class-wpfront-user-role-editor-entity-options.php │ ├── css │ ├── options.css │ └── style.css │ ├── images │ ├── check-icon.png │ ├── green_dot_64x64.png │ ├── help.png │ ├── loading.gif │ ├── orange_dot_64x64.png │ ├── roles_menu.png │ └── settings32x32.png │ ├── js │ └── options.js │ ├── languages │ ├── wpfront-user-role-editor.mo │ └── wpfront-user-role-editor.po │ ├── license.txt │ ├── readme.txt │ ├── templates │ ├── add-edit-role.php │ ├── assign-roles.php │ ├── delete-role.php │ ├── go-pro-table │ ├── go-pro.php │ ├── list-roles.php │ ├── options-template.php │ └── restore-role.php │ ├── uninstall.php │ └── wpfront-user-role-editor.php └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | end_of_line = lf 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | 10 | [{package.json,*.yml}] 11 | indent_style = space 12 | indent_size = 2 13 | 14 | [*.md] 15 | trim_trailing_whitespace = false 16 | 17 | [*.jade] 18 | trim_trailing_whitespace = false 19 | 20 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '2' 2 | 3 | services: 4 | app: 5 | extends: 6 | file: ./docker/compose/supply.yml 7 | service: dependencies 8 | environment: 9 | NODE_ENV: development 10 | ports: 11 | - 3000:3000 12 | command: yarn run start 13 | -------------------------------------------------------------------------------- /docker/compose/build.yml: -------------------------------------------------------------------------------- 1 | version: '2' 2 | 3 | services: 4 | nodejs: 5 | image: fl/node 6 | build: 7 | context: ../recipes/node/ 8 | args: 9 | USER: ${ENV_USER} 10 | GID: ${ENV_GID} 11 | UID: ${ENV_UID} 12 | -------------------------------------------------------------------------------- /docker/compose/supply.yml: -------------------------------------------------------------------------------- 1 | version: '2' 2 | 3 | services: 4 | dependencies: 5 | image: fl/node 6 | command: yarn install 7 | volumes: 8 | - ~/yarn_cache/:/tmp/cache/yarn/ 9 | - ../../source/:/home/jan/app/ # replace 'your_host_user' for the name of your host user 10 | -------------------------------------------------------------------------------- /docker/scripts/build.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | unset ENV_USER 3 | unset ENV_GID 4 | unset ENV_UID 5 | 6 | export ENV_USER=$(whoami) 7 | export ENV_GID=$(id -g) 8 | export ENV_UID=$(id -u) 9 | 10 | docker-compose -f ./docker/compose/build.yml build $1 11 | -------------------------------------------------------------------------------- /docker/scripts/setup.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | # build 4 | ./docker/scripts/build.sh 5 | 6 | # supply 7 | ./docker/scripts/supply.sh 8 | -------------------------------------------------------------------------------- /docker/scripts/supply.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | YARN_CACHE_DIR=~/yarn_cache/ 4 | ARGS=$@ 5 | 6 | if [ ! -d $YARN_CACHE_DIR ]; then 7 | echo "Creating ... ${YARN_CACHE_DIR} folder." 8 | mkdir $YARN_CACHE_DIR 9 | chmod -R 775 $YARN_CACHE_DIR 10 | fi 11 | 12 | if [ -z "$ARGS" ]; then 13 | ARGS=dependencies 14 | fi 15 | 16 | # supply 17 | docker-compose -f ./docker/compose/supply.yml run --user $(whoami) --rm $ARGS 18 | -------------------------------------------------------------------------------- /source/.nvmrc: -------------------------------------------------------------------------------- 1 | 4.2.6 2 | nvm 3 | -------------------------------------------------------------------------------- /source/pug/_config.pug: -------------------------------------------------------------------------------- 1 | - var post = {} 2 | - post.header = false 3 | - post.title = '' 4 | - post.date = '17 enero, 2016' 5 | - post.author = 'Jan Sanchez' 6 | -------------------------------------------------------------------------------- /source/themes/general/css/IQHow_FEYlDC4Gzy_m8fcoWiMMZ7xLd792ULpGE4W_Y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/general/css/IQHow_FEYlDC4Gzy_m8fcoWiMMZ7xLd792ULpGE4W_Y.woff2 -------------------------------------------------------------------------------- /source/themes/general/css/zhcz-_WihjSQC0oHJ9TCYPk_vArhqVIZ0nv9q090hN8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/general/css/zhcz-_WihjSQC0oHJ9TCYPk_vArhqVIZ0nv9q090hN8.woff2 -------------------------------------------------------------------------------- /source/themes/general/img/post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/general/img/post.png -------------------------------------------------------------------------------- /source/themes/ink/_post-comments.php: -------------------------------------------------------------------------------- 1 | 5 | Allow from all 6 | 7 | 8 | #allow access to any image 9 | 10 | Allow from all 11 | -------------------------------------------------------------------------------- /source/themes/plugins/akismet/_inc/img/logo-full-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/akismet/_inc/img/logo-full-2x.png -------------------------------------------------------------------------------- /source/themes/plugins/akismet/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/themes/plugins/ghost/css/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/themes/plugins/ghost/css/public.css: -------------------------------------------------------------------------------- 1 | /* This stylesheet is used to style the public view of the plugin. */ -------------------------------------------------------------------------------- /source/themes/plugins/ghost/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/themes/plugins/ghost/lang/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/themes/plugins/ghost/uninstall.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/.svnignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | .gitignore 3 | .travis.yml 4 | readme.md 5 | tests/ 6 | _inc/lib/icalendar-reader.php 7 | modules/shortcodes/upcoming-events.php 8 | modules/widgets/upcoming-events.php 9 | -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/3rd-party/3rd-party.php: -------------------------------------------------------------------------------- 1 | modules = Jetpack::get_available_modules(); 10 | return true; 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-get-endpoint.php: -------------------------------------------------------------------------------- 1 | plugins = array_keys( get_plugins() ); 10 | return true; 11 | } 12 | 13 | } 14 | 15 | -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-get-endpoint.php: -------------------------------------------------------------------------------- 1 | themes = wp_get_themes( array( 'allowed' => true ) ); 10 | return true; 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-af.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-af.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-ar.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-ar.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-az.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-az.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-bg_BG.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-bg_BG.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-bs_BA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-bs_BA.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-ca.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-ca.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-ckb.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-ckb.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-cs_CZ.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-cy.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-cy.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-da_DK.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-da_DK.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-de_DE.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-el.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-el.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-es_ES.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-fa_IR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-fa_IR.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-fi.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-fi.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-fr_FR.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-gl_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-gl_ES.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-he_IL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-he_IL.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-hr.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-hr.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-hu_HU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-hu_HU.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-id_ID.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-id_ID.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-it_IT.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-ja.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-ja.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-ka_GE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-ka_GE.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-ko_KR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-ko_KR.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-lt_LT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-lt_LT.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-mk_MK.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-mk_MK.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-ms_MY.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-ms_MY.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-my_MM.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-my_MM.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-nb_NO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-nb_NO.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-nl_NL.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-nn_NO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-nn_NO.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-pl_PL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-pl_PL.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-pt_BR.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-pt_PT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-pt_PT.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-ro_RO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-ro_RO.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-ru_RU.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-sa_IN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-sa_IN.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-si_LK.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-si_LK.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-sk_SK.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-sk_SK.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-sl_SI.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-sl_SI.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-sq.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-sq.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-sr_RS.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-sr_RS.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-sv_SE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-sv_SE.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-te.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-te.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-th.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-th.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-tr_TR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-tr_TR.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-uk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-uk.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-ur.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-ur.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-vi.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-vi.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-zh_CN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-zh_CN.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/languages/jetpack-zh_TW.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/languages/jetpack-zh_TW.mo -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/modules/after-the-deadline/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/modules/after-the-deadline/button.gif -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/modules/after-the-deadline/tinymce/atdbuttontr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/jetpack/modules/after-the-deadline/tinymce/atdbuttontr.gif -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/modules/after-the-deadline/tinymce/css/content.css: -------------------------------------------------------------------------------- 1 | .hiddenSpellError 2 | { 3 | border-bottom: 2px solid red; 4 | cursor: default; 5 | } 6 | 7 | .hiddenGrammarError 8 | { 9 | border-bottom: 2px solid green; 10 | cursor: default; 11 | } 12 | 13 | .hiddenSuggestion 14 | { 15 | border-bottom: 2px solid blue; 16 | cursor: default; 17 | } 18 | 19 | -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/modules/after-the-deadline/tinymce/css/content.min.css: -------------------------------------------------------------------------------- 1 | .hiddenSpellError{border-bottom:2px solid red;cursor:default}.hiddenGrammarError{border-bottom:2px solid green;cursor:default}.hiddenSuggestion{border-bottom:2px solid #00f;cursor:default} -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/modules/carousel.php: -------------------------------------------------------------------------------- 1 | span{font-weight:700}.misc-pub-section>div{margin-top:3px}#safecss-ace .ace_gutter{z-index:1}#post-body-content{margin-bottom:20px} -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror.css: -------------------------------------------------------------------------------- 1 | .CodeMirror, #safecss { 2 | font-family: Consolas, Monaco, monospace; 3 | font-size: 12px; 4 | line-height: 16px; 5 | min-height: 300px; 6 | } -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror.min.css: -------------------------------------------------------------------------------- 1 | #safecss,.CodeMirror{font-family:Consolas,Monaco,monospace;font-size:12px;line-height:16px;min-height:300px} -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/modules/custom-post-types/comics/admin.css: -------------------------------------------------------------------------------- 1 | #adminmenu #menu-posts-jetpack-comic .menu-icon-post div.wp-menu-image:before { 2 | content: '\f125'; 3 | } 4 | 5 | .edit-php .column-preview-jetpack-comic { 6 | width: 150px; 7 | } 8 | -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/modules/custom-post-types/css/many-items.css: -------------------------------------------------------------------------------- 1 | .many-items-table th, .many-items-table td { 2 | width: 25%; 3 | } 4 | 5 | .many-items-table input, .many-items-table textarea { 6 | width: 100%; 7 | } 8 | 9 | .many-items-table input[type=file] { 10 | -moz-box-sizing: border-box; 11 | -webkit-box-sizing: border-box; 12 | -ms-box-sizing: border-box; 13 | box-sizing: border-box; 14 | } 15 | -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/modules/debug.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/modules/mobile-push.php: -------------------------------------------------------------------------------- 1 | li.current > a.current:after { 4 | border-left-color:#8da94c; 5 | display: none; 6 | } 7 | 8 | .omnisearch-results > li:first-child > h2 { 9 | text-shadow: none; 10 | } 11 | -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/modules/omnisearch/omnisearch-jetpack-rtl.min.css: -------------------------------------------------------------------------------- 1 | ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-left-color:#8da94c;display:none}.omnisearch-results>li:first-child>h2{text-shadow:none} -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/modules/omnisearch/omnisearch-jetpack.css: -------------------------------------------------------------------------------- 1 | 2 | ul#adminmenu a.wp-has-current-submenu:after, 3 | ul#adminmenu > li.current > a.current:after { 4 | border-right-color:#8da94c; 5 | display: none; 6 | } 7 | 8 | .omnisearch-results > li:first-child > h2 { 9 | text-shadow: none; 10 | } 11 | -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/modules/omnisearch/omnisearch-jetpack.min.css: -------------------------------------------------------------------------------- 1 | ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-right-color:#8da94c;display:none}.omnisearch-results>li:first-child>h2{text-shadow:none} -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/modules/omnisearch/rtl/omnisearch-jetpack-rtl.css: -------------------------------------------------------------------------------- 1 | /* This file was automatically generated on Sep 29 2014 23:28:15 */ 2 | 3 | ul#adminmenu a.wp-has-current-submenu:after, 4 | ul#adminmenu > li.current > a.current:after { 5 | border-left-color:#8da94c; 6 | display: none; 7 | } 8 | 9 | .omnisearch-results > li:first-child > h2 { 10 | text-shadow: none; 11 | } 12 | -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/modules/photon.php: -------------------------------------------------------------------------------- 1 | template( 'square-layout', $context ); 3 | ?> 4 | -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-circle.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/modules/tonesque.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |

4 |
5 | 6 | -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/views/admin/network-admin-alert.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |

5 |

6 |

7 |
8 |
9 |
10 | -------------------------------------------------------------------------------- /source/themes/plugins/jetpack/wpml-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/blank.gif -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/fancy_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/fancy_close.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/fancy_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/fancy_loading.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/fancy_nav_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/fancy_nav_left.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/fancy_nav_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/fancy_nav_right.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/fancy_shadow_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/fancy_shadow_e.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/fancy_shadow_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/fancy_shadow_n.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/fancy_shadow_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/fancy_shadow_ne.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/fancy_shadow_nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/fancy_shadow_nw.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/fancy_shadow_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/fancy_shadow_s.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/fancy_shadow_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/fancy_shadow_se.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/fancy_shadow_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/fancy_shadow_sw.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/fancy_shadow_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/fancy_shadow_w.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/fancy_title_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/fancy_title_left.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/fancy_title_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/fancy_title_main.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/fancy_title_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/fancy_title_over.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/fancy_title_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/fancy_title_right.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/fancybox-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/fancybox-x.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/fancybox-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/fancybox-y.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/fancybox/fancybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/fancybox/fancybox.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/images/adfly_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/images/adfly_icon.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/images/adfocus_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/images/adfocus_icon.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/images/bitly_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/images/bitly_icon.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/images/blogger_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/images/blogger_icon.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/images/delicious_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/images/delicious_icon.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/images/diigo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/images/diigo_icon.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/images/facebook_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/images/facebook_icon.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/images/friendfeed_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/images/friendfeed_icon.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/images/googl_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/images/googl_icon.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/images/instapaper_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/images/instapaper_icon.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/images/linkedin_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/images/linkedin_icon.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/images/plurk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/images/plurk_icon.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/images/ppw_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/images/ppw_icon.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/images/tumblr_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/images/tumblr_icon.png -------------------------------------------------------------------------------- /source/themes/plugins/microblog-poster/images/twitter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/microblog-poster/images/twitter_icon.png -------------------------------------------------------------------------------- /source/themes/plugins/paypal-donations/assets/tabs.css: -------------------------------------------------------------------------------- 1 | #paypal-donations-tabs { 2 | margin: 0; 3 | } 4 | 5 | #paypal-donations-tabs li { 6 | cursor: pointer; 7 | } 8 | 9 | #paypal-donations-tabs-content > div { 10 | display: none; 11 | } 12 | 13 | #paypal-donations-tabs-content > #paypal-donations-tab-content-1 { 14 | display: block; 15 | } 16 | -------------------------------------------------------------------------------- /source/themes/plugins/paypal-donations/lang/paypal-donations-da_DK.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/paypal-donations/lang/paypal-donations-da_DK.mo -------------------------------------------------------------------------------- /source/themes/plugins/paypal-donations/lang/paypal-donations-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/paypal-donations/lang/paypal-donations-de_DE.mo -------------------------------------------------------------------------------- /source/themes/plugins/paypal-donations/lang/paypal-donations-es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/paypal-donations/lang/paypal-donations-es_ES.mo -------------------------------------------------------------------------------- /source/themes/plugins/paypal-donations/lang/paypal-donations-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/paypal-donations/lang/paypal-donations-fr_FR.mo -------------------------------------------------------------------------------- /source/themes/plugins/paypal-donations/lang/paypal-donations-he_IL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/paypal-donations/lang/paypal-donations-he_IL.mo -------------------------------------------------------------------------------- /source/themes/plugins/paypal-donations/lang/paypal-donations-it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/paypal-donations/lang/paypal-donations-it_IT.mo -------------------------------------------------------------------------------- /source/themes/plugins/paypal-donations/lang/paypal-donations-lt_LT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/paypal-donations/lang/paypal-donations-lt_LT.mo -------------------------------------------------------------------------------- /source/themes/plugins/paypal-donations/lang/paypal-donations-ms_MY.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/paypal-donations/lang/paypal-donations-ms_MY.mo -------------------------------------------------------------------------------- /source/themes/plugins/paypal-donations/lang/paypal-donations-nb_NO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/paypal-donations/lang/paypal-donations-nb_NO.mo -------------------------------------------------------------------------------- /source/themes/plugins/paypal-donations/lang/paypal-donations-nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/paypal-donations/lang/paypal-donations-nl_NL.mo -------------------------------------------------------------------------------- /source/themes/plugins/paypal-donations/lang/paypal-donations-nn_NO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/paypal-donations/lang/paypal-donations-nn_NO.mo -------------------------------------------------------------------------------- /source/themes/plugins/paypal-donations/lang/paypal-donations-ro_RO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/paypal-donations/lang/paypal-donations-ro_RO.mo -------------------------------------------------------------------------------- /source/themes/plugins/paypal-donations/lang/paypal-donations-ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/paypal-donations/lang/paypal-donations-ru_RU.mo -------------------------------------------------------------------------------- /source/themes/plugins/paypal-donations/lang/paypal-donations-sq_AL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/paypal-donations/lang/paypal-donations-sq_AL.mo -------------------------------------------------------------------------------- /source/themes/plugins/paypal-donations/lang/paypal-donations-sv_SE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/paypal-donations/lang/paypal-donations-sv_SE.mo -------------------------------------------------------------------------------- /source/themes/plugins/paypal-donations/lang/paypal-donations-tr_TR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/paypal-donations/lang/paypal-donations-tr_TR.mo -------------------------------------------------------------------------------- /source/themes/plugins/roost-for-bloggers/layout/images/roost-arrow-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/roost-for-bloggers/layout/images/roost-arrow-white.png -------------------------------------------------------------------------------- /source/themes/plugins/roost-for-bloggers/layout/images/roost-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/roost-for-bloggers/layout/images/roost-arrow.png -------------------------------------------------------------------------------- /source/themes/plugins/roost-for-bloggers/layout/images/roost-icon-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/roost-for-bloggers/layout/images/roost-icon-25.png -------------------------------------------------------------------------------- /source/themes/plugins/roost-for-bloggers/layout/images/roost-plugin-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/roost-for-bloggers/layout/images/roost-plugin-sprite.png -------------------------------------------------------------------------------- /source/themes/plugins/roost-for-bloggers/layout/images/roost-red-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/roost-for-bloggers/layout/images/roost-red-logo.png -------------------------------------------------------------------------------- /source/themes/plugins/roost-for-bloggers/layout/images/roost_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/roost-for-bloggers/layout/images/roost_logo.png -------------------------------------------------------------------------------- /source/themes/plugins/roost-for-bloggers/layout/images/roost_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/roost-for-bloggers/layout/images/roost_thumb.png -------------------------------------------------------------------------------- /source/themes/plugins/roost-for-bloggers/layout/js/roostbbp.js: -------------------------------------------------------------------------------- 1 | window._roostCallback = function( data ) { 2 | if ( data.registered ) { 3 | if ( data.enabled ) { 4 | roostToken = data.deviceToken; 5 | roostEnabled = data.enabled; 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /source/themes/plugins/stag-custom-sidebars/languages/stag.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/stag-custom-sidebars/languages/stag.mo -------------------------------------------------------------------------------- /source/themes/plugins/stag-custom-sidebars/uninstall.php: -------------------------------------------------------------------------------- 1 | p { 6 | margin-bottom: 20px; 7 | } 8 | 9 | .stag-help .s-help-row { 10 | padding: 20px 15px; 11 | border-top: 1px solid #eaeaea; 12 | } 13 | -------------------------------------------------------------------------------- /source/themes/plugins/stagtools/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/stagtools/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /source/themes/plugins/stagtools/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/stagtools/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /source/themes/plugins/stagtools/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/stagtools/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /source/themes/plugins/stagtools/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/stagtools/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /source/themes/plugins/stagtools/assets/img/sprite-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/stagtools/assets/img/sprite-popup.png -------------------------------------------------------------------------------- /source/themes/plugins/stagtools/assets/img/stag-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/stagtools/assets/img/stag-2x.png -------------------------------------------------------------------------------- /source/themes/plugins/stagtools/assets/img/stag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/stagtools/assets/img/stag.png -------------------------------------------------------------------------------- /source/themes/plugins/stagtools/assets/scss/font-awesome/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}, 5 | .#{$stag-css-prefix} { 6 | display: inline-block; 7 | font-family: FontAwesome; 8 | font-style: normal; 9 | font-weight: normal; 10 | line-height: 1; 11 | -webkit-font-smoothing: antialiased; 12 | -moz-osx-font-smoothing: grayscale; 13 | } 14 | -------------------------------------------------------------------------------- /source/themes/plugins/stagtools/assets/scss/font-awesome/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw, 4 | .#{$stag-css-prefix}-fw { 5 | width: (18em / 14); 6 | text-align: center; 7 | } 8 | -------------------------------------------------------------------------------- /source/themes/plugins/stagtools/languages/stagtools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-labs/post-template/d93bd86e46c0bc7817f9de723f63cf8840ae0050/source/themes/plugins/stagtools/languages/stagtools.mo -------------------------------------------------------------------------------- /source/themes/plugins/stagtools/uninstall.php: -------------------------------------------------------------------------------- 1 | setup_hooks(); 10 | 11 | } -------------------------------------------------------------------------------- /source/themes/plugins/wordpress-seo/admin/license-manager/views/index.php: -------------------------------------------------------------------------------- 1 |