biter/views/displayTweet.ejs

16 lines
375 B
Text

<!DOCTYPE html>
<html>
<head>
<%-
include("partials/head.ejs", {
title,
description: `Tweet by ${authorName} (@${authorHandle}) - ${description}`
})
%>
<link rel="stylesheet" href="/tweet.css" />
</head>
<body>
<h1><%= description %></h1>
<%- include("partials/tweet.ejs", { authorName, authorHandle, authorUrl, content, url }) %>
</body>
</html>