Skip to content

Commit

Permalink
added metadata to index and web templates
Browse files Browse the repository at this point in the history
  • Loading branch information
SAMAD101 committed Dec 22, 2023
1 parent 452bd72 commit 996f1df
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
12 changes: 9 additions & 3 deletions src/paste/templates/index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>paste.py 🐍</title>
<title>paste.py 🐍</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="og:title" content="paste.py 🐍"/>
<meta name="og:site_name" content="paste.py"/>
<meta name="og:description" content="A simple pastebin powered by FastAPI."/>
<meta name="og:type" content="website"/>
<meta name="og:url" content="https://paste.fosscu.org"/>
<meta name="og:locale" content="en_US"/>
<style>
body {
font-family: sans-serif;
Expand Down
12 changes: 9 additions & 3 deletions src/paste/templates/web.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>paste.py 🐍</title>
<title>paste.py 🐍</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="og:title" content="paste.py 🐍"/>
<meta name="og:site_name" content="paste.py"/>
<meta name="og:description" content="Web form for posting to paste.py. A simple pastebin powered by FastAPI."/>
<meta name="og:type" content="website"/>
<meta name="og:url" content="https://paste.fosscu.org/web"/>
<meta name="og:locale" content="en_US"/>
<style>
body {
font-family: sans-serif;
Expand Down

0 comments on commit 996f1df

Please sign in to comment.