diff options
author | Alex Pott <alex.a.pott@googlemail.com> | 2018-06-01 09:21:38 +0200 |
---|---|---|
committer | Alex Pott <alex.a.pott@googlemail.com> | 2018-06-01 09:21:38 +0200 |
commit | 8f6fcbdd5004f08e41713d3e651796ad47fabda8 (patch) | |
tree | e69b3c4b6f3d60c6306339057ee4752f6eea9cd5 /core/modules/media/templates | |
parent | 175fa94bc8c322e75dedc094833de4cd47222cdc (diff) | |
download | drupal-8f6fcbdd5004f08e41713d3e651796ad47fabda8.tar.gz drupal-8f6fcbdd5004f08e41713d3e651796ad47fabda8.zip |
Issue #2831944 by chr.fritsch, phenaproxima, marcoscano, seanB, slashrsm, robpowell, alexpott, samuel.mortenson, dawehner, tstoeckler, Wim Leers, Gábor Hojtsy, martin107, aheimlich, idebr, tedbow, larowlan, ckrina, mtodor, bkosborne: Implement media source plugin for remote video via oEmbed
Diffstat (limited to 'core/modules/media/templates')
-rw-r--r-- | core/modules/media/templates/media-oembed.html.twig | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/core/modules/media/templates/media-oembed.html.twig b/core/modules/media/templates/media-oembed.html.twig new file mode 100644 index 00000000000..17b7a6f3f55 --- /dev/null +++ b/core/modules/media/templates/media-oembed.html.twig @@ -0,0 +1,14 @@ +{# +/** + * @file + * Default theme implementation to display an oEmbed resource. + * + * @ingroup themeable + */ +#} +<!DOCTYPE html> +<html> + <body style="margin: 0"> + {{ post|raw }} + </body> +</html> |