RSS_News / templates /card.html
broadfield-dev's picture
Update templates/card.html
8adeee7 verified
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<meta name="twitter:card" content="player">
<meta name="twitter:site" content="@YourTwitterHandle"> <!-- Replace with your Twitter handle -->
<meta name="twitter:title" content="News Feed Hub - Live RSS Stream">
<meta name="twitter:description" content="Live RSS news feed with Semantic Search">
<meta name="twitter:image" content="https://huggingface.co/spaces/broadfield-dev/RSS_News/resolve/main/static/card_image.jpg"> <!-- Use Flask's url_for for static files -->
<meta name="twitter:player" content="https://broadfield-dev-rss-news.hf.space/card">
<meta name="twitter:player:width" content="100%">
<meta name="twitter:player:height" content="600">
<meta name="twitter:player:stream" content="https://broadfield-dev-rss-news.hf.space/card">
<meta name="twitter:player:stream:content_type" content="application/x-mpegURL">
<style>
#cap{
height:600px;
width:100%;
}
</style>
</head>
<body>
<div id='cap'>
<iframe src='https://broadfield-dev-rss-news.hf.space' allow='autoplay' width=100% height=500px></iframe>
</div>
</body>
</html>