Skip to content

Instantly share code, notes, and snippets.

@pankajpatel
Last active January 16, 2018 11:05
Show Gist options
  • Save pankajpatel/074b861d0c4709ab0ce478fdf6e8d9a5 to your computer and use it in GitHub Desktop.
Save pankajpatel/074b861d0c4709ab0ce478fdf6e8d9a5 to your computer and use it in GitHub Desktop.
module.exports = (scope) => `<article>
<header>
<h1><a href="${scope.link}">${scope.title}</a></h1>
</header>
${require(`./tags.html.js`)(scope)}
<div>
<video src=${scope.video.src} autoplay="off"></video>
</div>
<div>${scope.video.description}</div>
<div>${scope.body}</div>
</article>`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment