├── .bowerrc ├── .gitignore ├── .jscsrc ├── .jshintignore ├── .jshintrc ├── .travis.yml ├── CHANGES.txt ├── Gruntfile.js ├── LICENSE.txt ├── README.md ├── bower.json ├── config.sample.json ├── docs ├── dev │ ├── sublime.md │ └── vim.md └── docco │ └── scripts │ └── index.html ├── gui-resources ├── embed-code.dust ├── layout.dust └── scripts │ └── js │ ├── app.js │ ├── build │ ├── main.js │ └── themes │ │ ├── 1und1.js │ │ ├── 1und1 │ │ ├── desktop.js │ │ └── mobile.js │ │ ├── aachener.js │ │ ├── aachener │ │ ├── desktop.js │ │ ├── mobile.js │ │ └── quirks.js │ │ ├── aamulehti.js │ │ ├── aamulehti │ │ └── desktop.js │ │ ├── default.js │ │ ├── ess.js │ │ ├── ess │ │ ├── desktop.js │ │ ├── mobile.js │ │ └── quirks.js │ │ ├── generic.js │ │ ├── ksml-light.js │ │ ├── ksml-light │ │ └── desktop.js │ │ ├── ksml.js │ │ ├── ksml │ │ └── desktop.js │ │ ├── nzz.js │ │ ├── nzz │ │ └── desktop.js │ │ ├── rhrnt-section.js │ │ ├── rhrnt.js │ │ ├── rp.js │ │ ├── rp │ │ └── desktop.js │ │ ├── sasa-light.js │ │ ├── sasa-light │ │ └── desktop.js │ │ ├── sasa.js │ │ ├── sasa │ │ └── desktop.js │ │ ├── satakansa.js │ │ ├── satakansa │ │ └── desktop.js │ │ ├── sf-internal.js │ │ ├── stt-fnb.js │ │ ├── stt-fnb │ │ ├── desktop.js │ │ ├── mobile.js │ │ └── quirks.js │ │ ├── stt.js │ │ ├── stt │ │ ├── desktop.js │ │ ├── mobile.js │ │ └── quirks.js │ │ ├── tageswoche-multi.js │ │ ├── tageswoche-multi │ │ └── desktop.js │ │ ├── tageswoche-solo.js │ │ ├── tageswoche-solo │ │ └── desktop.js │ │ ├── zeit-solo.js │ │ └── zeit.js │ ├── collections │ ├── base-collection.js │ └── posts.js │ ├── config │ ├── defaultPaginationParams.js │ ├── scroll-pagination-plugin.js │ └── social-share-plugin.js │ ├── lib │ ├── backbone-private.js │ ├── backbone │ │ ├── backbone-custom.js │ │ └── model-collection-common.js │ ├── dust.js │ ├── dust │ │ ├── core.js │ │ ├── helpers │ │ │ ├── amp.js │ │ │ ├── date.js │ │ │ ├── i18n.js │ │ │ ├── trim.js │ │ │ └── twitter.js │ │ ├── render-themed.js │ │ └── themed.js │ ├── gettext.js │ ├── helpers │ │ ├── adjust-server-post.js │ │ ├── display-toggle.js │ │ ├── escape-RegExp.js │ │ ├── find-environment.js │ │ ├── fixed-encodeURIComponent.js │ │ ├── format-commentator.js │ │ ├── object-parse.js │ │ ├── trim-tag.js │ │ ├── twitter.js │ │ └── visibility-toggle.js │ ├── jquery-private.js │ ├── jquery │ │ └── xdomainrequest.js │ ├── lodash-private.js │ ├── lodash │ │ └── defaults-deep.js │ ├── logger.js │ ├── nodejs │ │ ├── dust-clear-cache.js │ │ ├── express │ │ │ └── cors.js │ │ ├── query-liveblog.js │ │ ├── requirejs-clear-cache.js │ │ └── url-href.js │ ├── poller.js │ ├── require-global.js │ ├── require │ │ ├── css-builder.js │ │ ├── css.js │ │ ├── i18n-builder.js │ │ ├── i18n-parse.js │ │ ├── i18n.js │ │ ├── tmpl-builder.js │ │ └── tmpl.js │ └── utils.js │ ├── load-theme.js │ ├── loader.js │ ├── main.js │ ├── models │ ├── base-model.js │ ├── blog.js │ ├── comment.js │ ├── liveblog.js │ └── post.js │ ├── plugins.js │ ├── plugins │ ├── button-pagination.js │ ├── css.js │ ├── image-fix.js │ ├── ivw-counter.js │ ├── ivw-refresh.js │ ├── ivw.js │ ├── load-client-script.js │ ├── pagination.js │ ├── pending-messages.js │ ├── permanent-link.js │ ├── post-hash.js │ ├── predefined-types.js │ ├── scroll-pagination.js │ ├── social-share.js │ ├── status.js │ ├── stop-auto-render.js │ ├── twitter-widgets.js │ ├── typekit.js │ ├── user-comments-popup.js │ ├── user-comments.js │ └── wrappup-toggle.js │ ├── router.js │ ├── server.js │ ├── version.js │ └── views │ ├── base-view.js │ ├── blog.js │ ├── embed-code.js │ ├── layout.js │ ├── post-templates.js │ ├── post.js │ └── posts.js ├── gui-themes └── themes │ ├── 1und1.js │ ├── 1und1 │ ├── desktop.js │ ├── desktop │ │ ├── container.dust │ │ ├── img │ │ │ ├── big-toggle.png │ │ │ ├── comment-icon.png │ │ │ ├── default-liveblog-avatar_48.png │ │ │ ├── facebook-16px.png │ │ │ ├── favorites.png │ │ │ ├── fb-16px.png │ │ │ ├── flickr-16px.png │ │ │ ├── google-16px.png │ │ │ ├── icon_unverified.png │ │ │ ├── icon_verified.png │ │ │ ├── instagram-16px.png │ │ │ ├── liback.png │ │ │ ├── link.png │ │ │ ├── loading-large.gif │ │ │ ├── loadmore.gif │ │ │ ├── quotes.png │ │ │ ├── reply.png │ │ │ ├── retweet.png │ │ │ ├── share.png │ │ │ ├── social_email_color.png │ │ │ ├── social_facebook_color.png │ │ │ ├── social_google_color.png │ │ │ ├── social_linkedin_color.png │ │ │ ├── social_pinterest_color.png │ │ │ ├── social_twitter_color.png │ │ │ ├── soundcloud-16px.png │ │ │ ├── tw-16px.png │ │ │ └── youtube-16px.png │ │ ├── item │ │ │ ├── base.dust │ │ │ ├── posttype │ │ │ │ ├── image.dust │ │ │ │ ├── link.dust │ │ │ │ ├── normal.dust │ │ │ │ ├── quote.dust │ │ │ │ └── wrapup.dust │ │ │ └── source │ │ │ │ ├── comments.dust │ │ │ │ ├── facebook.dust │ │ │ │ ├── flickr.dust │ │ │ │ ├── google.dust │ │ │ │ ├── google │ │ │ │ ├── images.dust │ │ │ │ ├── news.dust │ │ │ │ └── web.dust │ │ │ │ ├── instagram.dust │ │ │ │ ├── sms.dust │ │ │ │ ├── soundcloud.dust │ │ │ │ ├── twitter.dust │ │ │ │ └── youtube.dust │ │ ├── liveblog.css │ │ ├── liveblog.less │ │ └── vendor │ │ │ └── iframeresizer.min.js │ ├── mobile.js │ └── mobile │ │ ├── container.dust │ │ ├── img │ │ ├── big-toggle.png │ │ ├── comment-icon.png │ │ ├── default-liveblog-avatar_48.png │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── fb-16px.png │ │ ├── flickr-16px.png │ │ ├── google-16px.png │ │ ├── icon_unverified.png │ │ ├── icon_verified.png │ │ ├── instagram-16px.png │ │ ├── liback.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── loadmore.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── share.png │ │ ├── social_email_color.png │ │ ├── social_facebook_color.png │ │ ├── social_google_color.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── tw-16px.png │ │ └── youtube-16px.png │ │ ├── item │ │ ├── base.dust │ │ ├── posttype │ │ │ ├── image.dust │ │ │ ├── link.dust │ │ │ ├── normal.dust │ │ │ ├── quote.dust │ │ │ └── wrapup.dust │ │ └── source │ │ │ ├── comments.dust │ │ │ ├── facebook.dust │ │ │ ├── flickr.dust │ │ │ ├── google.dust │ │ │ ├── google │ │ │ ├── images.dust │ │ │ ├── news.dust │ │ │ └── web.dust │ │ │ ├── instagram.dust │ │ │ ├── sms.dust │ │ │ ├── soundcloud.dust │ │ │ ├── twitter.dust │ │ │ └── youtube.dust │ │ ├── liveblog.css │ │ ├── liveblog.less │ │ ├── plugins │ │ ├── permanent-link.dust │ │ └── social-share-anchor.dust │ │ └── vendor │ │ └── iframeresizer.min.js │ ├── aachener.js │ ├── aachener │ ├── desktop.js │ ├── desktop │ │ ├── container.dust │ │ ├── img │ │ │ ├── big-toggle.png │ │ │ ├── big_toggle.png │ │ │ ├── comment-icon.png │ │ │ ├── comment-icon48.png │ │ │ ├── default-liveblog-avatar.png │ │ │ ├── default-liveblog-avatar_48.png │ │ │ ├── dots32.gif │ │ │ ├── facebook-16px.png │ │ │ ├── favorites.png │ │ │ ├── fb-16px.png │ │ │ ├── flickr-16px.png │ │ │ ├── google-16px.png │ │ │ ├── instagram-16px.png │ │ │ ├── instagram.png │ │ │ ├── liback.png │ │ │ ├── link.png │ │ │ ├── loading-large.gif │ │ │ ├── quotes.png │ │ │ ├── reply.png │ │ │ ├── retweet.png │ │ │ ├── share.png │ │ │ ├── social_email_color.png │ │ │ ├── social_facebook.png │ │ │ ├── social_facebook_color.png │ │ │ ├── social_google.png │ │ │ ├── social_google_color.png │ │ │ ├── social_linkedin.png │ │ │ ├── social_linkedin_color.png │ │ │ ├── social_pinterest.png │ │ │ ├── social_pinterest_color.png │ │ │ ├── social_twitter.png │ │ │ ├── social_twitter_color.png │ │ │ ├── soundcloud-16px.png │ │ │ ├── stt-logo.png │ │ │ ├── tw-16px.png │ │ │ ├── unpublish.png │ │ │ └── youtube-16px.png │ │ ├── item │ │ │ ├── base.dust │ │ │ └── source │ │ │ │ └── youtube.dust │ │ ├── liveblog.css │ │ ├── plugins │ │ │ ├── permanent-link.dust │ │ │ └── social-share-anchor.dust │ │ └── translation.dust │ ├── mobile.js │ └── mobile │ │ ├── container.dust │ │ ├── img │ │ ├── big-toggle.png │ │ ├── big_toggle.png │ │ ├── comment-icon.png │ │ ├── comment-icon48.png │ │ ├── default-liveblog-avatar.png │ │ ├── default-liveblog-avatar_48.png │ │ ├── dots32.gif │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── fb-16px.png │ │ ├── flickr-16px.png │ │ ├── google-16px.png │ │ ├── instagram-16px.png │ │ ├── instagram.png │ │ ├── liback.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── share.png │ │ ├── social_email_color.png │ │ ├── social_facebook.png │ │ ├── social_facebook_color.png │ │ ├── social_google.png │ │ ├── social_google_color.png │ │ ├── social_linkedin.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── stt-logo.png │ │ ├── tw-16px.png │ │ ├── unpublish.png │ │ └── youtube-16px.png │ │ ├── item │ │ ├── base.dust │ │ └── source │ │ │ └── youtube.dust │ │ ├── liveblog.css │ │ ├── plugins │ │ ├── permanent-link.dust │ │ └── social-share-anchor.dust │ │ └── translation.dust │ ├── aamulehti.js │ ├── aamulehti │ ├── __init__.py │ ├── desktop.js │ └── desktop │ │ ├── __init__.py │ │ ├── base-theme.less │ │ ├── container.dust │ │ ├── img │ │ ├── __init__.py │ │ ├── big-toggle.png │ │ ├── big_toggle.png │ │ ├── comment-icon.png │ │ ├── comment-icon48.png │ │ ├── default-liveblog-avatar.png │ │ ├── default-liveblog-avatar_48.png │ │ ├── dots32.gif │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── fb-16px.png │ │ ├── flickr-16px.png │ │ ├── google-16px.png │ │ ├── instagram-16px.png │ │ ├── instagram.png │ │ ├── liback.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── share.png │ │ ├── social_email_color.png │ │ ├── social_facebook.png │ │ ├── social_facebook_color.png │ │ ├── social_google.png │ │ ├── social_google_color.png │ │ ├── social_linkedin.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── tw-16px.png │ │ ├── unpublish.png │ │ └── youtube-16px.png │ │ ├── item │ │ ├── __init__.py │ │ └── base.dust │ │ └── liveblog.css │ ├── base │ ├── container.dust │ ├── item │ │ ├── base.dust │ │ ├── posttype │ │ │ ├── base.dust │ │ │ ├── image.dust │ │ │ ├── infomercial.dust │ │ │ ├── link.dust │ │ │ ├── normal.dust │ │ │ ├── quote.dust │ │ │ └── wrapup.dust │ │ ├── social-share.dust │ │ └── source │ │ │ ├── base.dust │ │ │ ├── comments.dust │ │ │ ├── facebook.dust │ │ │ ├── flickr.dust │ │ │ ├── google.dust │ │ │ ├── google │ │ │ ├── images.dust │ │ │ ├── news.dust │ │ │ └── web.dust │ │ │ ├── infomercial.dust │ │ │ ├── instagram.dust │ │ │ ├── sms.dust │ │ │ ├── soundcloud.dust │ │ │ ├── twitter.dust │ │ │ └── youtube.dust │ ├── plugins │ │ ├── after-button-pagination.dust │ │ ├── before-button-pagination.dust │ │ ├── pending-items-message.dust │ │ ├── permanent-link.dust │ │ ├── social-share-anchor.dust │ │ ├── social-share.dust │ │ ├── twitter-widgets.dust │ │ ├── user-comment-action.dust │ │ ├── user-comment-backdrop.dust │ │ ├── user-comment-message.dust │ │ └── user-comment.dust │ ├── posts-list.dust │ └── translation.dust │ ├── default.js │ ├── default │ ├── base-theme.less │ ├── container.dust │ ├── img │ │ ├── big-toggle.png │ │ ├── big_toggle.png │ │ ├── comment-icon-bottom.png │ │ ├── comment-icon.png │ │ ├── comment-icon2.png │ │ ├── default-liveblog-avatar.png │ │ ├── default-liveblog-avatar_48.png │ │ ├── dots32.gif │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── fb-16px.png │ │ ├── flickr-16px.png │ │ ├── google-16px.png │ │ ├── icfj-16px.png │ │ ├── icon_unverified.png │ │ ├── icon_verified.png │ │ ├── instagram-16px.png │ │ ├── instagram.png │ │ ├── liback.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── loadmore.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── share.png │ │ ├── social_email_color.png │ │ ├── social_facebook.png │ │ ├── social_facebook_color.png │ │ ├── social_google.png │ │ ├── social_google_color.png │ │ ├── social_linkedin.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── stt-logo.png │ │ ├── tw-16px.png │ │ ├── unpublish.png │ │ └── youtube-16px.png │ ├── item │ │ ├── base.dust │ │ ├── posttype │ │ │ ├── image.dust │ │ │ ├── link.dust │ │ │ ├── normal.dust │ │ │ ├── quote.dust │ │ │ └── wrapup.dust │ │ └── source │ │ │ ├── comments.dust │ │ │ ├── facebook.dust │ │ │ ├── flickr.dust │ │ │ ├── google.dust │ │ │ ├── google │ │ │ ├── images.dust │ │ │ ├── news.dust │ │ │ └── web.dust │ │ │ ├── instagram.dust │ │ │ ├── sms.dust │ │ │ ├── soundcloud.dust │ │ │ ├── twitter.dust │ │ │ └── youtube.dust │ └── liveblog.css │ ├── ess.js │ ├── ess │ ├── desktop.js │ ├── desktop │ │ ├── base-theme.less │ │ ├── container.dust │ │ ├── img │ │ │ ├── big-toggle.png │ │ │ ├── big_toggle.png │ │ │ ├── comment-icon.png │ │ │ ├── comment-icon48.png │ │ │ ├── default-liveblog-avatar.png │ │ │ ├── default-liveblog-avatar_48.png │ │ │ ├── dots32.gif │ │ │ ├── ess-logo.png │ │ │ ├── facebook-16px.png │ │ │ ├── favorites.png │ │ │ ├── fb-16px.png │ │ │ ├── flickr-16px.png │ │ │ ├── google-16px.png │ │ │ ├── instagram-16px.png │ │ │ ├── instagram.png │ │ │ ├── liback.png │ │ │ ├── link.png │ │ │ ├── loading-large.gif │ │ │ ├── quotes.png │ │ │ ├── reply.png │ │ │ ├── retweet.png │ │ │ ├── share.png │ │ │ ├── social_email_color.png │ │ │ ├── social_facebook.png │ │ │ ├── social_facebook_color.png │ │ │ ├── social_google.png │ │ │ ├── social_google_color.png │ │ │ ├── social_linkedin.png │ │ │ ├── social_linkedin_color.png │ │ │ ├── social_pinterest.png │ │ │ ├── social_pinterest_color.png │ │ │ ├── social_twitter.png │ │ │ ├── social_twitter_color.png │ │ │ ├── soundcloud-16px.png │ │ │ ├── stt-logo.png │ │ │ ├── tw-16px.png │ │ │ ├── unpublish.png │ │ │ └── youtube-16px.png │ │ ├── item │ │ │ └── base.dust │ │ └── liveblog.css │ ├── mobile.js │ ├── mobile │ │ ├── container.dust │ │ ├── img │ │ │ ├── big_toggle.png │ │ │ ├── comment-icon-bottom.png │ │ │ ├── comment-icon.png │ │ │ ├── comment-icon2.png │ │ │ ├── comment-icon48.png │ │ │ ├── default-liveblog-avatar.png │ │ │ ├── dots32.gif │ │ │ ├── ess-logo.png │ │ │ ├── facebook-16px.png │ │ │ ├── favorites.png │ │ │ ├── fb-16px.png │ │ │ ├── flickr-16px.png │ │ │ ├── google-16px.png │ │ │ ├── icfj-16px.png │ │ │ ├── instagram-16px.png │ │ │ ├── instagram.png │ │ │ ├── liback.png │ │ │ ├── link.png │ │ │ ├── quotes.png │ │ │ ├── reply.png │ │ │ ├── retweet.png │ │ │ ├── share.png │ │ │ ├── social_email_color.png │ │ │ ├── social_facebook.png │ │ │ ├── social_facebook_color.png │ │ │ ├── social_google.png │ │ │ ├── social_google_color.png │ │ │ ├── social_linkedin.png │ │ │ ├── social_linkedin_color.png │ │ │ ├── social_pinterest.png │ │ │ ├── social_pinterest_color.png │ │ │ ├── social_twitter.png │ │ │ ├── social_twitter_color.png │ │ │ ├── soundcloud-16px.png │ │ │ ├── stt-logo.png │ │ │ ├── tw-16px.png │ │ │ ├── unpublish.png │ │ │ └── youtube-16px.png │ │ ├── item │ │ │ └── base.dust │ │ └── liveblog.css │ ├── quirks.js │ └── quirks │ │ ├── container.dust │ │ ├── img │ │ ├── avatar0.png │ │ ├── big-toggle.png │ │ ├── big_toggle.png │ │ ├── comment-icon-bottom.png │ │ ├── comment-icon.png │ │ ├── comment-icon2.png │ │ ├── comment-icon48.png │ │ ├── default-liveblog-avatar.png │ │ ├── default-liveblog-avatar_48.png │ │ ├── dots32.gif │ │ ├── ess-logo.png │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── fb-16px.png │ │ ├── flickr-16px.png │ │ ├── google-16px.png │ │ ├── icfj-16px.png │ │ ├── instagram-16px.png │ │ ├── instagram.png │ │ ├── liback.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── share.png │ │ ├── social_email_color.png │ │ ├── social_facebook.png │ │ ├── social_facebook_color.png │ │ ├── social_google.png │ │ ├── social_google_color.png │ │ ├── social_linkedin.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── stt-logo.png │ │ ├── unpublish.png │ │ └── youtube-16px.png │ │ ├── item │ │ └── base.dust │ │ └── liveblog.css │ ├── generic.js │ ├── generic │ ├── container.dust │ ├── img │ │ ├── big-toggle.png │ │ ├── comment-icon.png │ │ ├── default-liveblog-avatar_48.png │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── fb-16px.png │ │ ├── flickr-16px.png │ │ ├── google-16px.png │ │ ├── icon_unverified.png │ │ ├── icon_verified.png │ │ ├── instagram-16px.png │ │ ├── liback.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── loadmore.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── share.png │ │ ├── social_email_color.png │ │ ├── social_facebook_color.png │ │ ├── social_google_color.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── tw-16px.png │ │ └── youtube-16px.png │ ├── item │ │ ├── base.dust │ │ ├── posttype │ │ │ ├── image.dust │ │ │ ├── link.dust │ │ │ ├── normal.dust │ │ │ ├── quote.dust │ │ │ └── wrapup.dust │ │ └── source │ │ │ ├── comments.dust │ │ │ ├── facebook.dust │ │ │ ├── flickr.dust │ │ │ ├── google.dust │ │ │ ├── google │ │ │ ├── images.dust │ │ │ ├── news.dust │ │ │ └── web.dust │ │ │ ├── instagram.dust │ │ │ ├── sms.dust │ │ │ ├── soundcloud.dust │ │ │ ├── twitter.dust │ │ │ └── youtube.dust │ ├── liveblog.css │ └── liveblog.less │ ├── ksml-light.js │ ├── ksml-light │ ├── __init__.py │ ├── desktop.js │ └── desktop │ │ ├── __init__.py │ │ ├── base-theme.less │ │ ├── container.dust │ │ ├── img │ │ ├── __init__.py │ │ ├── big-toggle.png │ │ ├── big_toggle.png │ │ ├── comment-icon.png │ │ ├── comment-icon48.png │ │ ├── default-liveblog-avatar.png │ │ ├── default-liveblog-avatar_48.png │ │ ├── dots32.gif │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── fb-16px.png │ │ ├── flickr-16px.png │ │ ├── google-16px.png │ │ ├── instagram-16px.png │ │ ├── instagram.png │ │ ├── liback.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── share.png │ │ ├── social_email_color.png │ │ ├── social_facebook.png │ │ ├── social_facebook_color.png │ │ ├── social_google.png │ │ ├── social_google_color.png │ │ ├── social_linkedin.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── tw-16px.png │ │ ├── unpublish.png │ │ └── youtube-16px.png │ │ ├── item │ │ ├── __init__.py │ │ └── base.dust │ │ └── liveblog.css │ ├── ksml.js │ ├── ksml │ ├── __init__.py │ ├── desktop.js │ └── desktop │ │ ├── __init__.py │ │ ├── base-theme.less │ │ ├── container.dust │ │ ├── img │ │ ├── __init__.py │ │ ├── big-toggle.png │ │ ├── big_toggle.png │ │ ├── comment-icon.png │ │ ├── comment-icon48.png │ │ ├── default-liveblog-avatar.png │ │ ├── default-liveblog-avatar_48.png │ │ ├── dots32.gif │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── fb-16px.png │ │ ├── flickr-16px.png │ │ ├── google-16px.png │ │ ├── instagram-16px.png │ │ ├── instagram.png │ │ ├── liback.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── share.png │ │ ├── social_email_color.png │ │ ├── social_facebook.png │ │ ├── social_facebook_color.png │ │ ├── social_google.png │ │ ├── social_google_color.png │ │ ├── social_linkedin.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── tw-16px.png │ │ ├── unpublish.png │ │ └── youtube-16px.png │ │ ├── item │ │ ├── __init__.py │ │ └── base.dust │ │ └── liveblog.css │ ├── liveblog.css │ ├── nzz.js │ ├── nzz │ ├── desktop.js │ └── desktop │ │ ├── base-theme.less │ │ ├── container.dust │ │ ├── img │ │ ├── big-toggle.png │ │ ├── big_toggle.png │ │ ├── comment-icon.png │ │ ├── default-avatar.png │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── fb-16px.png │ │ ├── flickr-16px.png │ │ ├── google-16px.png │ │ ├── instagram-16px.png │ │ ├── instagram.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── share.png │ │ ├── social_email_color.png │ │ ├── social_facebook.png │ │ ├── social_facebook_color.png │ │ ├── social_google.png │ │ ├── social_google_color.png │ │ ├── social_linkedin.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── tw-16px.png │ │ ├── unpublish.png │ │ └── youtube-16px.png │ │ ├── item │ │ └── base.dust │ │ └── liveblog.css │ ├── rhrnt-section.js │ ├── rhrnt-section │ ├── base-theme.less │ ├── container.dust │ ├── img │ │ ├── big-toggle.png │ │ ├── comment-icon.png │ │ ├── default-liveblog-avatar_48.png │ │ ├── favorites.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── loadmore.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── share.png │ │ ├── social_email_color.png │ │ ├── social_facebook_color.png │ │ ├── social_google_color.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest_color.png │ │ └── social_twitter_color.png │ ├── item │ │ └── base.dust │ └── liveblog.css │ ├── rhrnt.js │ ├── rhrnt │ ├── container.dust │ ├── img │ │ ├── Thumbs.db │ │ ├── big-toggle.png │ │ ├── comment-icon.png │ │ ├── default-liveblog-avatar_48.png │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── fb-16px.png │ │ ├── flickr-16px.png │ │ ├── google-16px.png │ │ ├── icon_unverified.png │ │ ├── icon_verified.png │ │ ├── instagram-16px.png │ │ ├── liback.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── loadmore.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── share.png │ │ ├── social_email_color.png │ │ ├── social_facebook_color.png │ │ ├── social_google_color.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── tw-16px.png │ │ └── youtube-16px.png │ ├── item │ │ └── base.dust │ └── liveblog.css │ ├── rp.js │ ├── rp │ ├── desktop.js │ └── desktop │ │ ├── container.dust │ │ ├── img │ │ ├── big-toggle.png │ │ ├── big_toggle.png │ │ ├── comment-icon.png │ │ ├── default-liveblog-avatar.png │ │ ├── default-liveblog-avatar_48.png │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── fb-16px.png │ │ ├── flickr-16px.png │ │ ├── google-16px.png │ │ ├── instagram-16px.png │ │ ├── instagram.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── share.png │ │ ├── social_email_color.png │ │ ├── social_facebook.png │ │ ├── social_facebook_color.png │ │ ├── social_google.png │ │ ├── social_google_color.png │ │ ├── social_linkedin.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── sync-16.png │ │ ├── tw-16px.png │ │ ├── unpublish.png │ │ └── youtube-16px.png │ │ ├── item │ │ ├── base.dust │ │ ├── posttype │ │ │ ├── image.dust │ │ │ ├── link.dust │ │ │ ├── normal.dust │ │ │ ├── quote.dust │ │ │ └── wrapup.dust │ │ └── source │ │ │ ├── comments.dust │ │ │ ├── facebook.dust │ │ │ ├── flickr.dust │ │ │ ├── google.dust │ │ │ ├── google │ │ │ ├── images.dust │ │ │ ├── news.dust │ │ │ └── web.dust │ │ │ ├── instagram.dust │ │ │ ├── sms.dust │ │ │ ├── soundcloud.dust │ │ │ ├── twitter.dust │ │ │ └── youtube.dust │ │ └── liveblog.css │ ├── sasa-light.js │ ├── sasa-light │ ├── __init__.py │ ├── desktop.js │ └── desktop │ │ ├── __init__.py │ │ ├── base-theme.less │ │ ├── container.dust │ │ ├── img │ │ ├── __init__.py │ │ ├── big-toggle.png │ │ ├── big_toggle.png │ │ ├── comment-icon.png │ │ ├── comment-icon48.png │ │ ├── default-liveblog-avatar.png │ │ ├── default-liveblog-avatar_48.png │ │ ├── dots32.gif │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── fb-16px.png │ │ ├── flickr-16px.png │ │ ├── google-16px.png │ │ ├── instagram-16px.png │ │ ├── instagram.png │ │ ├── liback.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── sasa-logo.png │ │ ├── share.png │ │ ├── social_email_color.png │ │ ├── social_facebook.png │ │ ├── social_facebook_color.png │ │ ├── social_google.png │ │ ├── social_google_color.png │ │ ├── social_linkedin.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── tw-16px.png │ │ ├── unpublish.png │ │ └── youtube-16px.png │ │ ├── item │ │ ├── __init__.py │ │ └── base.dust │ │ └── liveblog.css │ ├── sasa.js │ ├── sasa │ ├── __init__.py │ ├── desktop.js │ └── desktop │ │ ├── __init__.py │ │ ├── base-theme.less │ │ ├── container.dust │ │ ├── img │ │ ├── __init__.py │ │ ├── big-toggle.png │ │ ├── big_toggle.png │ │ ├── comment-icon.png │ │ ├── comment-icon48.png │ │ ├── default-liveblog-avatar.png │ │ ├── default-liveblog-avatar_48.png │ │ ├── dots32.gif │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── fb-16px.png │ │ ├── flickr-16px.png │ │ ├── google-16px.png │ │ ├── instagram-16px.png │ │ ├── instagram.png │ │ ├── liback.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── sasa-logo.png │ │ ├── share.png │ │ ├── social_email_color.png │ │ ├── social_facebook.png │ │ ├── social_facebook_color.png │ │ ├── social_google.png │ │ ├── social_google_color.png │ │ ├── social_linkedin.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── tw-16px.png │ │ ├── unpublish.png │ │ └── youtube-16px.png │ │ ├── item │ │ ├── __init__.py │ │ └── base.dust │ │ └── liveblog.css │ ├── satakansa.js │ ├── satakansa │ ├── __init__.py │ ├── desktop.js │ └── desktop │ │ ├── __init__.py │ │ ├── base-theme.less │ │ ├── container.dust │ │ ├── img │ │ ├── __init__.py │ │ ├── big-toggle.png │ │ ├── big_toggle.png │ │ ├── comment-icon.png │ │ ├── comment-icon48.png │ │ ├── default-liveblog-avatar.png │ │ ├── default-liveblog-avatar_48.png │ │ ├── dots32.gif │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── fb-16px.png │ │ ├── flickr-16px.png │ │ ├── google-16px.png │ │ ├── instagram-16px.png │ │ ├── instagram.png │ │ ├── liback.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── share.png │ │ ├── social_email_color.png │ │ ├── social_facebook.png │ │ ├── social_facebook_color.png │ │ ├── social_google.png │ │ ├── social_google_color.png │ │ ├── social_linkedin.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── tw-16px.png │ │ ├── unpublish.png │ │ └── youtube-16px.png │ │ ├── item │ │ ├── __init__.py │ │ └── base.dust │ │ └── liveblog.css │ ├── sf-internal.js │ ├── sf-internal │ ├── base-theme.less │ ├── container.dust │ ├── img │ │ ├── Thumbs.db │ │ ├── action-icons.png │ │ ├── avatar_default.png │ │ ├── big-toggle.png │ │ ├── comment-icon.png │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── flickr-16px.png │ │ ├── google-16px.png │ │ ├── instagram-16px.png │ │ ├── loading-large.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── social_email_color.png │ │ ├── social_facebook_color.png │ │ ├── social_google_color.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── to-top.png │ │ ├── tw-16px.png │ │ └── youtube-16px.png │ ├── item │ │ ├── base.dust │ │ ├── posttype │ │ │ ├── image.dust │ │ │ ├── link.dust │ │ │ ├── normal.dust │ │ │ ├── quote.dust │ │ │ └── wrapup.dust │ │ └── source │ │ │ ├── comments.dust │ │ │ ├── facebook.dust │ │ │ ├── flickr.dust │ │ │ ├── google.dust │ │ │ ├── google │ │ │ ├── images.dust │ │ │ ├── news.dust │ │ │ └── web.dust │ │ │ ├── instagram.dust │ │ │ ├── sms.dust │ │ │ ├── soundcloud.dust │ │ │ ├── twitter.dust │ │ │ └── youtube.dust │ ├── liveblog.css │ └── plugins │ │ ├── permanent-link.dust │ │ └── social-share-anchor.dust │ ├── stt-fnb.js │ ├── stt-fnb │ ├── desktop.js │ ├── desktop │ │ ├── base-theme.less │ │ ├── container.dust │ │ ├── img │ │ │ ├── big-toggle.png │ │ │ ├── big_toggle.png │ │ │ ├── comment-icon.png │ │ │ ├── comment-icon48.png │ │ │ ├── default-liveblog-avatar.png │ │ │ ├── default-liveblog-avatar_48.png │ │ │ ├── dots32.gif │ │ │ ├── facebook-16px.png │ │ │ ├── favorites.png │ │ │ ├── fb-16px.png │ │ │ ├── flickr-16px.png │ │ │ ├── fnb-logo.png │ │ │ ├── google-16px.png │ │ │ ├── instagram-16px.png │ │ │ ├── instagram.png │ │ │ ├── liback.png │ │ │ ├── link.png │ │ │ ├── loading-large.gif │ │ │ ├── quotes.png │ │ │ ├── reply.png │ │ │ ├── retweet.png │ │ │ ├── share.png │ │ │ ├── social_email_color.png │ │ │ ├── social_facebook.png │ │ │ ├── social_facebook_color.png │ │ │ ├── social_google.png │ │ │ ├── social_google_color.png │ │ │ ├── social_linkedin.png │ │ │ ├── social_linkedin_color.png │ │ │ ├── social_pinterest.png │ │ │ ├── social_pinterest_color.png │ │ │ ├── social_twitter.png │ │ │ ├── social_twitter_color.png │ │ │ ├── soundcloud-16px.png │ │ │ ├── tw-16px.png │ │ │ ├── unpublish.png │ │ │ └── youtube-16px.png │ │ ├── item │ │ │ └── base.dust │ │ └── liveblog.css │ ├── mobile.js │ ├── mobile │ │ ├── container.dust │ │ ├── img │ │ │ ├── big_toggle.png │ │ │ ├── comment-icon-bottom.png │ │ │ ├── comment-icon.png │ │ │ ├── comment-icon2.png │ │ │ ├── comment-icon48.png │ │ │ ├── default-liveblog-avatar.png │ │ │ ├── dots32.gif │ │ │ ├── facebook-16px.png │ │ │ ├── favorites.png │ │ │ ├── fb-16px.png │ │ │ ├── flickr-16px.png │ │ │ ├── fnb-logo.png │ │ │ ├── google-16px.png │ │ │ ├── icfj-16px.png │ │ │ ├── instagram-16px.png │ │ │ ├── instagram.png │ │ │ ├── liback.png │ │ │ ├── link.png │ │ │ ├── quotes.png │ │ │ ├── reply.png │ │ │ ├── retweet.png │ │ │ ├── share.png │ │ │ ├── social_email_color.png │ │ │ ├── social_facebook.png │ │ │ ├── social_facebook_color.png │ │ │ ├── social_google.png │ │ │ ├── social_google_color.png │ │ │ ├── social_linkedin.png │ │ │ ├── social_linkedin_color.png │ │ │ ├── social_pinterest.png │ │ │ ├── social_pinterest_color.png │ │ │ ├── social_twitter.png │ │ │ ├── social_twitter_color.png │ │ │ ├── soundcloud-16px.png │ │ │ ├── tw-16px.png │ │ │ ├── unpublish.png │ │ │ └── youtube-16px.png │ │ ├── item │ │ │ └── base.dust │ │ └── liveblog.css │ ├── quirks.js │ └── quirks │ │ ├── container.dust │ │ ├── img │ │ ├── avatar0.png │ │ ├── big-toggle.png │ │ ├── big_toggle.png │ │ ├── comment-icon-bottom.png │ │ ├── comment-icon.png │ │ ├── comment-icon2.png │ │ ├── comment-icon48.png │ │ ├── default-liveblog-avatar.png │ │ ├── default-liveblog-avatar_48.png │ │ ├── dots32.gif │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── fb-16px.png │ │ ├── flickr-16px.png │ │ ├── fnb-logo.png │ │ ├── google-16px.png │ │ ├── icfj-16px.png │ │ ├── instagram-16px.png │ │ ├── instagram.png │ │ ├── liback.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── share.png │ │ ├── social_email_color.png │ │ ├── social_facebook.png │ │ ├── social_facebook_color.png │ │ ├── social_google.png │ │ ├── social_google_color.png │ │ ├── social_linkedin.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── unpublish.png │ │ └── youtube-16px.png │ │ ├── item │ │ └── base.dust │ │ └── liveblog.css │ ├── stt.js │ ├── stt │ ├── desktop.js │ ├── desktop │ │ ├── base-theme.less │ │ ├── container.dust │ │ ├── img │ │ │ ├── big-toggle.png │ │ │ ├── big_toggle.png │ │ │ ├── comment-icon.png │ │ │ ├── comment-icon48.png │ │ │ ├── default-liveblog-avatar.png │ │ │ ├── default-liveblog-avatar_48.png │ │ │ ├── dots32.gif │ │ │ ├── facebook-16px.png │ │ │ ├── favorites.png │ │ │ ├── fb-16px.png │ │ │ ├── flickr-16px.png │ │ │ ├── google-16px.png │ │ │ ├── instagram-16px.png │ │ │ ├── instagram.png │ │ │ ├── liback.png │ │ │ ├── link.png │ │ │ ├── loading-large.gif │ │ │ ├── quotes.png │ │ │ ├── reply.png │ │ │ ├── retweet.png │ │ │ ├── share.png │ │ │ ├── social_email_color.png │ │ │ ├── social_facebook.png │ │ │ ├── social_facebook_color.png │ │ │ ├── social_google.png │ │ │ ├── social_google_color.png │ │ │ ├── social_linkedin.png │ │ │ ├── social_linkedin_color.png │ │ │ ├── social_pinterest.png │ │ │ ├── social_pinterest_color.png │ │ │ ├── social_twitter.png │ │ │ ├── social_twitter_color.png │ │ │ ├── soundcloud-16px.png │ │ │ ├── stt-logo.png │ │ │ ├── tw-16px.png │ │ │ ├── unpublish.png │ │ │ └── youtube-16px.png │ │ ├── item │ │ │ └── base.dust │ │ └── liveblog.css │ ├── mobile.js │ ├── mobile │ │ ├── container.dust │ │ ├── img │ │ │ ├── big_toggle.png │ │ │ ├── comment-icon-bottom.png │ │ │ ├── comment-icon.png │ │ │ ├── comment-icon2.png │ │ │ ├── comment-icon48.png │ │ │ ├── default-liveblog-avatar.png │ │ │ ├── dots32.gif │ │ │ ├── facebook-16px.png │ │ │ ├── favorites.png │ │ │ ├── fb-16px.png │ │ │ ├── flickr-16px.png │ │ │ ├── google-16px.png │ │ │ ├── icfj-16px.png │ │ │ ├── instagram-16px.png │ │ │ ├── instagram.png │ │ │ ├── liback.png │ │ │ ├── link.png │ │ │ ├── quotes.png │ │ │ ├── reply.png │ │ │ ├── retweet.png │ │ │ ├── share.png │ │ │ ├── social_email_color.png │ │ │ ├── social_facebook.png │ │ │ ├── social_facebook_color.png │ │ │ ├── social_google.png │ │ │ ├── social_google_color.png │ │ │ ├── social_linkedin.png │ │ │ ├── social_linkedin_color.png │ │ │ ├── social_pinterest.png │ │ │ ├── social_pinterest_color.png │ │ │ ├── social_twitter.png │ │ │ ├── social_twitter_color.png │ │ │ ├── soundcloud-16px.png │ │ │ ├── stt-logo.png │ │ │ ├── tw-16px.png │ │ │ ├── unpublish.png │ │ │ └── youtube-16px.png │ │ ├── item │ │ │ └── base.dust │ │ └── liveblog.css │ ├── quirks.js │ └── quirks │ │ ├── container.dust │ │ ├── img │ │ ├── avatar0.png │ │ ├── big-toggle.png │ │ ├── big_toggle.png │ │ ├── comment-icon-bottom.png │ │ ├── comment-icon.png │ │ ├── comment-icon2.png │ │ ├── comment-icon48.png │ │ ├── default-liveblog-avatar.png │ │ ├── default-liveblog-avatar_48.png │ │ ├── dots32.gif │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── fb-16px.png │ │ ├── flickr-16px.png │ │ ├── google-16px.png │ │ ├── icfj-16px.png │ │ ├── instagram-16px.png │ │ ├── instagram.png │ │ ├── liback.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── share.png │ │ ├── social_email_color.png │ │ ├── social_facebook.png │ │ ├── social_facebook_color.png │ │ ├── social_google.png │ │ ├── social_google_color.png │ │ ├── social_linkedin.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── stt-logo.png │ │ ├── unpublish.png │ │ └── youtube-16px.png │ │ ├── item │ │ └── base.dust │ │ └── liveblog.css │ ├── tageswoche-multi.js │ ├── tageswoche-multi │ ├── __init__.py │ ├── desktop.js │ └── desktop │ │ ├── __init__.py │ │ ├── base-theme.less │ │ ├── container.dust │ │ ├── img │ │ ├── __init__.py │ │ ├── big-toggle.png │ │ ├── big_toggle.png │ │ ├── comment-icon.png │ │ ├── default-liveblog-avatar.png │ │ ├── default-liveblog-avatar_48.png │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── fb-16px.png │ │ ├── flickr-16px.png │ │ ├── google-16px.png │ │ ├── instagram-16px.png │ │ ├── instagram.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── share.png │ │ ├── social_email_color.png │ │ ├── social_facebook.png │ │ ├── social_facebook_color.png │ │ ├── social_google.png │ │ ├── social_google_color.png │ │ ├── social_linkedin.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── tw-16px.png │ │ ├── unpublish.png │ │ └── youtube-16px.png │ │ ├── item │ │ ├── __init__.py │ │ ├── base.dust │ │ ├── posttype │ │ │ ├── __init__.py │ │ │ ├── image.dust │ │ │ ├── link.dust │ │ │ ├── normal.dust │ │ │ ├── quote.dust │ │ │ └── wrapup.dust │ │ └── source │ │ │ ├── __init__.py │ │ │ ├── comments.dust │ │ │ ├── facebook.dust │ │ │ ├── flickr.dust │ │ │ ├── google.dust │ │ │ ├── google │ │ │ ├── __init__.py │ │ │ ├── images.dust │ │ │ ├── news.dust │ │ │ └── web.dust │ │ │ ├── instagram.dust │ │ │ ├── sms.dust │ │ │ ├── soundcloud.dust │ │ │ ├── twitter.dust │ │ │ └── youtube.dust │ │ └── liveblog.css │ ├── tageswoche-solo.js │ ├── tageswoche-solo │ ├── __init__.py │ ├── desktop.js │ └── desktop │ │ ├── __init__.py │ │ ├── container.dust │ │ ├── img │ │ ├── __init__.py │ │ ├── big-toggle.png │ │ ├── big_toggle.png │ │ ├── comment-icon.png │ │ ├── default-liveblog-avatar.png │ │ ├── default-liveblog-avatar_48.png │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── fb-16px.png │ │ ├── flickr-16px.png │ │ ├── google-16px.png │ │ ├── instagram-16px.png │ │ ├── instagram.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── share.png │ │ ├── social_email_color.png │ │ ├── social_facebook.png │ │ ├── social_facebook_color.png │ │ ├── social_google.png │ │ ├── social_google_color.png │ │ ├── social_linkedin.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── tw-16px.png │ │ ├── unpublish.png │ │ └── youtube-16px.png │ │ ├── item │ │ ├── __init__.py │ │ ├── base.dust │ │ ├── posttype │ │ │ ├── __init__.py │ │ │ ├── image.dust │ │ │ ├── link.dust │ │ │ ├── normal.dust │ │ │ ├── quote.dust │ │ │ └── wrapup.dust │ │ └── source │ │ │ ├── __init__.py │ │ │ ├── comments.dust │ │ │ ├── facebook.dust │ │ │ ├── flickr.dust │ │ │ ├── google.dust │ │ │ ├── google │ │ │ ├── __init__.py │ │ │ ├── images.dust │ │ │ ├── news.dust │ │ │ └── web.dust │ │ │ ├── instagram.dust │ │ │ ├── sms.dust │ │ │ ├── soundcloud.dust │ │ │ ├── twitter.dust │ │ │ └── youtube.dust │ │ └── liveblog.css │ ├── zeit-amp.js │ ├── zeit-amp │ ├── container.dust │ ├── item │ │ ├── base.dust │ │ ├── posttype │ │ │ └── image.dust │ │ ├── predefined │ │ │ └── scorecard.dust │ │ └── source │ │ │ ├── facebook.dust │ │ │ ├── flickr.dust │ │ │ ├── google │ │ │ ├── images.dust │ │ │ ├── news.dust │ │ │ └── web.dust │ │ │ ├── instagram.dust │ │ │ ├── soundcloud.dust │ │ │ ├── twitter.dust │ │ │ └── youtube.dust │ ├── liveblog.css │ ├── liveblog.scss │ ├── plugins │ │ ├── after-button-pagination.dust │ │ ├── before-button-pagination.dust │ │ └── social-share.dust │ ├── posts-list.dust │ └── scripts │ │ └── js │ │ └── plugins │ │ ├── ampify.js │ │ ├── button-pagination.js │ │ └── social-share.js │ ├── zeit-solo.js │ ├── zeit-solo │ ├── container.dust │ ├── img │ │ ├── big-toggle.png │ │ ├── comment-icon.png │ │ ├── default-liveblog-avatar.png │ │ ├── default-liveblog-avatar_48.png │ │ ├── dots32.gif │ │ ├── facebook-16px.png │ │ ├── favorites.png │ │ ├── flickr-16px.png │ │ ├── google-16px.png │ │ ├── icon_unverified.png │ │ ├── icon_verified.png │ │ ├── instagram-16px.png │ │ ├── link.png │ │ ├── loading-large.gif │ │ ├── loadmore.gif │ │ ├── quotes.png │ │ ├── reply.png │ │ ├── retweet.png │ │ ├── share.png │ │ ├── sharing_b.png │ │ ├── sharing_w.png │ │ ├── social_email_color.png │ │ ├── social_facebook.png │ │ ├── social_facebook_color.png │ │ ├── social_google.png │ │ ├── social_google_color.png │ │ ├── social_linkedin.png │ │ ├── social_linkedin_color.png │ │ ├── social_pinterest.png │ │ ├── social_pinterest_color.png │ │ ├── social_twitter.png │ │ ├── social_twitter_color.png │ │ ├── soundcloud-16px.png │ │ ├── tw-16px.png │ │ ├── unpublish.png │ │ └── youtube-16px.png │ ├── item │ │ ├── base.dust │ │ └── predefined │ │ │ └── scorecard.dust │ ├── liveblog.css │ ├── liveblog.scss │ ├── plugins │ │ └── social-share.dust │ └── scripts │ │ └── js │ │ ├── config │ │ └── social-share-plugin.js │ │ └── plugins │ │ └── social-share.js │ ├── zeit.js │ └── zeit │ ├── container.dust │ ├── img │ ├── big-toggle.png │ ├── comment-icon.png │ ├── default-liveblog-avatar.png │ ├── default-liveblog-avatar_48.png │ ├── dots32.gif │ ├── facebook-16px.png │ ├── favorites.png │ ├── flickr-16px.png │ ├── google-16px.png │ ├── icon_unverified.png │ ├── icon_verified.png │ ├── instagram-16px.png │ ├── link.png │ ├── loading-large.gif │ ├── loadmore.gif │ ├── quotes.png │ ├── reply.png │ ├── retweet.png │ ├── share.png │ ├── sharing_b.png │ ├── sharing_w.png │ ├── social_email_color.png │ ├── social_facebook.png │ ├── social_facebook_color.png │ ├── social_google.png │ ├── social_google_color.png │ ├── social_linkedin.png │ ├── social_linkedin_color.png │ ├── social_pinterest.png │ ├── social_pinterest_color.png │ ├── social_twitter.png │ ├── social_twitter_color.png │ ├── soundcloud-16px.png │ ├── tw-16px.png │ ├── unpublish.png │ └── youtube-16px.png │ ├── item │ ├── base.dust │ └── predefined │ │ └── scorecard.dust │ ├── liveblog.css │ ├── liveblog.scss │ ├── plugins │ └── social-share.dust │ ├── sass │ ├── _constants.scss │ ├── _fonts.scss │ ├── _functions.scss │ ├── _mixins.scss │ └── _utils.scss │ └── scripts │ └── js │ ├── config │ └── social-share-plugin.js │ └── plugins │ └── social-share.js ├── package.json ├── protractor-conf.js ├── spec ├── embed_spec.js ├── helpers │ ├── liveblog_auth.js │ ├── liveblog_backend.js │ ├── liveblog_blogs.js │ ├── liveblog_fixtures.js │ ├── liveblog_frontend.js │ ├── liveblog_posts.js │ ├── selenium.js │ └── utils.js ├── matchers.js └── setup.js ├── tasks └── options │ ├── coveralls.js │ ├── docco-husky.js │ ├── docco.js │ ├── env.js │ ├── express.js │ ├── forever.js │ ├── githooks.js │ ├── jscs.js │ ├── jshint.js │ ├── karma.js │ ├── less.js │ ├── mochaTest.js │ ├── open.js │ ├── requirejs.js │ └── watch.js └── test ├── client ├── karma.conf.js ├── models │ ├── base-model.spec.js │ ├── blog-model.spec.js │ └── post-model.spec.js ├── test-main.js └── views │ └── base-view.spec.js └── server ├── mocha.opts ├── models ├── blog-model.spec.js └── post-model.spec.js ├── spechelper.js └── views └── base-view.spec.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "gui-resources/scripts/js/bower_components" 3 | } -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | gui-resources/scripts/js/bower_components 2 | node_modules 3 | -------------------------------------------------------------------------------- /gui-resources/scripts/js/build/themes/1und1.js: -------------------------------------------------------------------------------- 1 | liveblog.define("themeFile",[],function(){return{environments:{desktop:"desktop",mobile:"mobile","default":"desktop"}}}); -------------------------------------------------------------------------------- /gui-resources/scripts/js/build/themes/aachener.js: -------------------------------------------------------------------------------- 1 | liveblog.define("themeFile",[],function(){return{environments:{desktop:"desktop",mobile:"mobile","default":"desktop"}}}); -------------------------------------------------------------------------------- /gui-resources/scripts/js/build/themes/aamulehti.js: -------------------------------------------------------------------------------- 1 | liveblog.define("themeFile",[],function(){return{environments:{desktop:"desktop","default":"desktop"}}}); -------------------------------------------------------------------------------- /gui-resources/scripts/js/build/themes/ess.js: -------------------------------------------------------------------------------- 1 | liveblog.define("themeFile",[],function(){return{environments:{mobile:"mobile",desktop:"desktop",quirks:"quirks","default":"desktop"}}}); -------------------------------------------------------------------------------- /gui-resources/scripts/js/build/themes/ksml-light.js: -------------------------------------------------------------------------------- 1 | liveblog.define("themeFile",[],function(){return{environments:{desktop:"desktop","default":"desktop"}}}); -------------------------------------------------------------------------------- /gui-resources/scripts/js/build/themes/ksml.js: -------------------------------------------------------------------------------- 1 | liveblog.define("themeFile",[],function(){return{environments:{desktop:"desktop","default":"desktop"}}}); -------------------------------------------------------------------------------- /gui-resources/scripts/js/build/themes/nzz.js: -------------------------------------------------------------------------------- 1 | liveblog.define("themeFile",[],function(){return{environments:{desktop:"desktop","default":"desktop"}}}); -------------------------------------------------------------------------------- /gui-resources/scripts/js/build/themes/rp.js: -------------------------------------------------------------------------------- 1 | liveblog.define("themeFile",[],function(){return liveblog.emulateOLDHEADERS=!0,{environments:{desktop:"desktop","default":"desktop"}}}); -------------------------------------------------------------------------------- /gui-resources/scripts/js/build/themes/sasa-light.js: -------------------------------------------------------------------------------- 1 | liveblog.define("themeFile",[],function(){return{environments:{desktop:"desktop","default":"desktop"}}}); -------------------------------------------------------------------------------- /gui-resources/scripts/js/build/themes/sasa.js: -------------------------------------------------------------------------------- 1 | liveblog.define("themeFile",[],function(){return{environments:{desktop:"desktop","default":"desktop"}}}); -------------------------------------------------------------------------------- /gui-resources/scripts/js/build/themes/satakansa.js: -------------------------------------------------------------------------------- 1 | liveblog.define("themeFile",[],function(){return{environments:{desktop:"desktop","default":"desktop"}}}); -------------------------------------------------------------------------------- /gui-resources/scripts/js/build/themes/stt-fnb.js: -------------------------------------------------------------------------------- 1 | liveblog.define("themeFile",[],function(){return{environments:{mobile:"mobile",desktop:"desktop",quirks:"quirks","default":"desktop"}}}); -------------------------------------------------------------------------------- /gui-resources/scripts/js/build/themes/stt.js: -------------------------------------------------------------------------------- 1 | liveblog.define("themeFile",[],function(){return{environments:{mobile:"mobile",desktop:"desktop",quirks:"quirks","default":"desktop"}}}); -------------------------------------------------------------------------------- /gui-resources/scripts/js/build/themes/tageswoche-multi.js: -------------------------------------------------------------------------------- 1 | liveblog.define("themeFile",[],function(){return{environments:{desktop:"desktop","default":"desktop"}}}); -------------------------------------------------------------------------------- /gui-resources/scripts/js/build/themes/tageswoche-solo.js: -------------------------------------------------------------------------------- 1 | liveblog.define("themeFile",[],function(){return{environments:{desktop:"desktop","default":"desktop"}}}); -------------------------------------------------------------------------------- /gui-resources/scripts/js/config/defaultPaginationParams.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | define({ 4 | 5 | offset: 0, 6 | 7 | // Number of items per page 8 | limit: 15 9 | }); 10 | -------------------------------------------------------------------------------- /gui-resources/scripts/js/lib/backbone-private.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | define(['backbone', 'json2'], function(bb) { 4 | return bb.noConflict(); 5 | }); 6 | -------------------------------------------------------------------------------- /gui-resources/scripts/js/lib/dust/core.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | define(['dustjs-linkedin', 'dustjs-helpers'], function(dust) { 4 | return dust; 5 | }); 6 | -------------------------------------------------------------------------------- /gui-resources/scripts/js/lib/jquery-private.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | define(['jquery'], function(jq) { 4 | return jq.noConflict(true); 5 | }); 6 | -------------------------------------------------------------------------------- /gui-resources/scripts/js/lib/lodash-private.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | define(['lodash'], function(lodash) { 4 | return lodash.noConflict(); 5 | }); 6 | -------------------------------------------------------------------------------- /gui-resources/scripts/js/lib/lodash/defaults-deep.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | define(['lodash'], function(_) { 4 | _.defaultsDeep = _.partialRight(_.merge, _.defaults); 5 | return _; 6 | }); 7 | -------------------------------------------------------------------------------- /gui-resources/scripts/js/lib/require-global.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | define(['underscore'], function(_) { 4 | return _.isFunction(liveblog.require) ? liveblog.require : require; 5 | }); 6 | -------------------------------------------------------------------------------- /gui-resources/scripts/js/plugins.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | define({}); 3 | -------------------------------------------------------------------------------- /gui-resources/scripts/js/version.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | liveblog.callbackVersion({ 4 | major: 0, 5 | minor: 0, 6 | revision: 0 7 | }); 8 | -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/img/big-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/desktop/img/big-toggle.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/img/comment-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/desktop/img/comment-icon.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/img/favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/desktop/img/favorites.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/img/fb-16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/desktop/img/fb-16px.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/img/flickr-16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/desktop/img/flickr-16px.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/img/google-16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/desktop/img/google-16px.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/img/liback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/desktop/img/liback.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/img/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/desktop/img/link.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/img/loadmore.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/desktop/img/loadmore.gif -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/img/quotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/desktop/img/quotes.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/img/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/desktop/img/reply.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/img/retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/desktop/img/retweet.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/img/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/desktop/img/share.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/img/tw-16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/desktop/img/tw-16px.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/img/youtube-16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/desktop/img/youtube-16px.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/item/posttype/image.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/posttype/image"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/item/posttype/link.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/posttype/link"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/item/posttype/normal.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/posttype/normal"/} 2 | {"themeBase/item/posttype/quote"/} 2 | -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/item/posttype/wrapup.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/posttype/wrapup"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/item/source/comments.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/comments"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/item/source/facebook.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/facebook"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/item/source/flickr.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/flickr"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/item/source/google.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/google"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/item/source/google/images.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/google/images"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/item/source/google/news.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/google/news"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/item/source/google/web.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/google/web"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/item/source/instagram.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/instagram"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/item/source/sms.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/sms"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/item/source/soundcloud.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/soundcloud"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/item/source/twitter.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/twitter"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/desktop/item/source/youtube.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/youtube"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/img/big-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/mobile/img/big-toggle.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/img/comment-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/mobile/img/comment-icon.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/img/facebook-16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/mobile/img/facebook-16px.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/img/favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/mobile/img/favorites.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/img/fb-16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/mobile/img/fb-16px.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/img/flickr-16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/mobile/img/flickr-16px.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/img/google-16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/mobile/img/google-16px.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/img/icon_verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/mobile/img/icon_verified.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/img/liback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/mobile/img/liback.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/img/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/mobile/img/link.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/img/loading-large.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/mobile/img/loading-large.gif -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/img/loadmore.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/mobile/img/loadmore.gif -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/img/quotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/mobile/img/quotes.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/img/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/mobile/img/reply.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/img/retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/mobile/img/retweet.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/img/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/mobile/img/share.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/img/tw-16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/mobile/img/tw-16px.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/img/youtube-16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/1und1/mobile/img/youtube-16px.png -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/item/posttype/image.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/posttype/image"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/item/posttype/link.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/posttype/link"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/item/posttype/normal.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/posttype/normal"/} 2 | {"themeBase/item/posttype/quote"/} 2 | -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/item/posttype/wrapup.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/posttype/wrapup"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/item/source/comments.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/comments"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/item/source/facebook.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/facebook"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/item/source/flickr.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/flickr"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/item/source/google.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/google"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/item/source/google/images.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/google/images"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/item/source/google/news.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/google/news"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/item/source/google/web.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/google/web"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/item/source/instagram.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/instagram"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/item/source/sms.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/sms"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/item/source/soundcloud.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/soundcloud"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/item/source/twitter.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/twitter"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/item/source/youtube.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/youtube"/} -------------------------------------------------------------------------------- /gui-themes/themes/1und1/mobile/plugins/social-share-anchor.dust: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gui-themes/themes/aachener/desktop/img/dots32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/desktop/img/dots32.gif -------------------------------------------------------------------------------- /gui-themes/themes/aachener/desktop/img/favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/desktop/img/favorites.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/desktop/img/fb-16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/desktop/img/fb-16px.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/desktop/img/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/desktop/img/instagram.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/desktop/img/liback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/desktop/img/liback.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/desktop/img/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/desktop/img/link.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/desktop/img/quotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/desktop/img/quotes.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/desktop/img/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/desktop/img/reply.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/desktop/img/retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/desktop/img/retweet.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/desktop/img/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/desktop/img/share.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/desktop/img/stt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/desktop/img/stt-logo.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/desktop/img/tw-16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/desktop/img/tw-16px.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/desktop/img/unpublish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/desktop/img/unpublish.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/desktop/plugins/social-share-anchor.dust: -------------------------------------------------------------------------------- 1 | _('Share'); -------------------------------------------------------------------------------- /gui-themes/themes/aachener/desktop/translation.dust: -------------------------------------------------------------------------------- 1 | {! 2 | _('Permalink'); 3 | !} -------------------------------------------------------------------------------- /gui-themes/themes/aachener/mobile/img/big-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/mobile/img/big-toggle.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/mobile/img/big_toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/mobile/img/big_toggle.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/mobile/img/dots32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/mobile/img/dots32.gif -------------------------------------------------------------------------------- /gui-themes/themes/aachener/mobile/img/favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/mobile/img/favorites.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/mobile/img/fb-16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/mobile/img/fb-16px.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/mobile/img/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/mobile/img/instagram.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/mobile/img/liback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/mobile/img/liback.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/mobile/img/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/mobile/img/link.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/mobile/img/quotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/mobile/img/quotes.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/mobile/img/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/mobile/img/reply.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/mobile/img/retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/mobile/img/retweet.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/mobile/img/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/mobile/img/share.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/mobile/img/stt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/mobile/img/stt-logo.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/mobile/img/tw-16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/mobile/img/tw-16px.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/mobile/img/unpublish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aachener/mobile/img/unpublish.png -------------------------------------------------------------------------------- /gui-themes/themes/aachener/mobile/plugins/social-share-anchor.dust: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gui-themes/themes/aachener/mobile/translation.dust: -------------------------------------------------------------------------------- 1 | {! 2 | _('Permalink'); 3 | !} -------------------------------------------------------------------------------- /gui-themes/themes/aamulehti.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | 'use strict'; 3 | return { 4 | environments: { 5 | 'desktop': 'desktop', 6 | 'default': 'desktop' 7 | } 8 | }; 9 | }); 10 | -------------------------------------------------------------------------------- /gui-themes/themes/aamulehti/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aamulehti/__init__.py -------------------------------------------------------------------------------- /gui-themes/themes/aamulehti/desktop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aamulehti/desktop/__init__.py -------------------------------------------------------------------------------- /gui-themes/themes/aamulehti/desktop/img/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aamulehti/desktop/img/__init__.py -------------------------------------------------------------------------------- /gui-themes/themes/aamulehti/desktop/img/dots32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aamulehti/desktop/img/dots32.gif -------------------------------------------------------------------------------- /gui-themes/themes/aamulehti/desktop/img/fb-16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aamulehti/desktop/img/fb-16px.png -------------------------------------------------------------------------------- /gui-themes/themes/aamulehti/desktop/img/liback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aamulehti/desktop/img/liback.png -------------------------------------------------------------------------------- /gui-themes/themes/aamulehti/desktop/img/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aamulehti/desktop/img/link.png -------------------------------------------------------------------------------- /gui-themes/themes/aamulehti/desktop/img/quotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aamulehti/desktop/img/quotes.png -------------------------------------------------------------------------------- /gui-themes/themes/aamulehti/desktop/img/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aamulehti/desktop/img/reply.png -------------------------------------------------------------------------------- /gui-themes/themes/aamulehti/desktop/img/retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aamulehti/desktop/img/retweet.png -------------------------------------------------------------------------------- /gui-themes/themes/aamulehti/desktop/img/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aamulehti/desktop/img/share.png -------------------------------------------------------------------------------- /gui-themes/themes/aamulehti/desktop/img/tw-16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aamulehti/desktop/img/tw-16px.png -------------------------------------------------------------------------------- /gui-themes/themes/aamulehti/desktop/item/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveblog/plugin-liveblog-embed-server/3026f021c87c2b2561a42880b7462d71b5fc6130/gui-themes/themes/aamulehti/desktop/item/__init__.py -------------------------------------------------------------------------------- /gui-themes/themes/base/item/posttype/base.dust: -------------------------------------------------------------------------------- 1 | {>"{baseItem}"/} 2 | {"themeBase/item/posttype/base"/} 2 | {"themeBase/item/posttype/base"/} 2 | {"themeBase/item/posttype/base"/} 2 | {"themeBase/item/posttype/base"/} 2 | {"{baseItem}"/} -------------------------------------------------------------------------------- /gui-themes/themes/base/item/source/infomercial.dust: -------------------------------------------------------------------------------- 1 | {>"themeBase/item/source/base"/} 2 | { 2 | -------------------------------------------------------------------------------- /gui-themes/themes/base/plugins/social-share-anchor.dust: -------------------------------------------------------------------------------- 1 | _('Share'); -------------------------------------------------------------------------------- /gui-themes/themes/base/plugins/twitter-widgets.dust: -------------------------------------------------------------------------------- 1 | {>"{baseTwitter}"/} 2 | {