-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add SEO tags (#745) #759
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,80 @@ | ||
<!DOCTYPE html> | ||
<html lang="he"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" href="favicon.ico" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#000000" /> | ||
<meta name="Open-Bus" content="Open Bus web app" /> | ||
<link rel="apple-touch-icon" href="logo192.png" /> | ||
<link rel="manifest" href="manifest.json" /> | ||
<title>Open Bus</title> | ||
<style> | ||
.preloader { | ||
width: 80px; | ||
height: 80px; | ||
border: 2px solid #f3f3f3; | ||
border-top: 3px solid #f25a41; | ||
border-radius: 100%; | ||
position: absolute; | ||
top: 0; | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
margin: auto; | ||
animation: spin 1s infinite linear; | ||
} | ||
|
||
@keyframes spin { | ||
from { | ||
transform: rotate(0deg); | ||
} | ||
to { | ||
transform: rotate(360deg); | ||
} | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" href="favicon.ico" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#000000" /> | ||
<meta name="Open-Bus" content="Open Bus web app" /> | ||
<link rel="apple-touch-icon" href="logo192.png" /> | ||
<link rel="manifest" href="manifest.json" /> | ||
|
||
<!-- Primary Meta Tags --> | ||
<title>דאטאבוס</title> | ||
<meta name="title" content='דאטאבוס - נתוני ביצוע לתחב"צ הישראלי' /> | ||
<meta name="description" | ||
content="אתר דאטאבוס מציג נתונים על איכות קווי התחבורה הציבורית בארץ, מתוך מקורות מידע ממשלתיים, במטרה להביא תמונת מצב על תפקוד התחבורה הציבורית בארץ." /> | ||
|
||
<!-- Open Graph / Facebook --> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content="https://www.facebook.com/hasadna.org.il/" /> | ||
<meta property="og:title" content='דאטאבוס - נתוני ביצוע לתחב"צ הישראלי' /> | ||
<meta property="og:description" | ||
content="אתר דאטאבוס מציג נתונים על איכות קווי התחבורה הציבורית בארץ, מתוך מקורות מידע ממשלתיים, במטרה להביא תמונת מצב על תפקוד התחבורה הציבורית בארץ." /> | ||
<meta property="og:image" content="social-image.png" /> | ||
|
||
<!-- Twitter --> | ||
<meta property="twitter:card" content="summary_large_image" /> | ||
<meta property="twitter:url" content="https://x.com/hasadna" /> | ||
<meta property="twitter:title" content='דאטאבוס - נתוני ביצוע לתחב"צ הישראלי' /> | ||
<meta property="twitter:description" | ||
content="אתר דאטאבוס מציג נתונים על איכות קווי התחבורה הציבורית בארץ, מתוך מקורות מידע ממשלתיים, במטרה להביא תמונת מצב על תפקוד התחבורה הציבורית בארץ." /> | ||
<meta property="twitter:image" content="social-image.png" /> | ||
|
||
<style> | ||
.preloader { | ||
width: 80px; | ||
height: 80px; | ||
border: 2px solid #f3f3f3; | ||
border-top: 3px solid #f25a41; | ||
border-radius: 100%; | ||
position: absolute; | ||
top: 0; | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
margin: auto; | ||
animation: spin 1s infinite linear; | ||
} | ||
|
||
@keyframes spin { | ||
from { | ||
transform: rotate(0deg); | ||
} | ||
.preloader-bus { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
font-size: 25px; | ||
transform: translate(-50%, -50%); | ||
|
||
to { | ||
transform: rotate(360deg); | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"> | ||
<div class="preloader-bus">🚌</div> | ||
<div class="preloader"></div> | ||
</div> | ||
<script type="module" src="/src/index.tsx"></script> | ||
</body> | ||
</html> | ||
} | ||
|
||
.preloader-bus { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
font-size: 25px; | ||
transform: translate(-50%, -50%); | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"> | ||
<div class="preloader-bus">🚌</div> | ||
<div class="preloader"></div> | ||
</div> | ||
<script type="module" src="/src/index.tsx"></script> | ||
</body> | ||
|
||
</html> |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's a weird version of the logo, but why not? I like it. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀