biter/views/displayTweet.ejs

17 lines
378 B
Text
Raw Normal View History

2024-03-07 17:53:10 +03:00
<!DOCTYPE html>
<html>
<head>
<%-
include("partials/head.ejs", {
2024-03-07 18:14:35 +03:00
title: `Tweet by ${authorName} (@${authorHandle}) - ${title}`,
description: content
2024-03-07 17:53:10 +03:00
})
%>
<link rel="stylesheet" href="/tweet.css" />
</head>
<body>
<h1><%= description %></h1>
<%- include("partials/tweet.ejs", { authorName, authorHandle, authorUrl, content, url }) %>
</body>
</html>