-
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
Conversation
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.
Looks good to me!
Below are some suggestions I think might help us
If we want to take it a step further its also possible to add schema.org tags
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Website",
"name": "דאטאבוס",
"url": "https://open-bus-map-search.hasadna.org.il/",
"description": "אתר דאטאבוס מציג נתונים על איכות קווי התחבורה הציבורית בארץ, מתוך מקורות מידע ממשלתיים.",
"sameAs": [
"https://www.facebook.com/hasadna.org.il/",
"https://x.com/hasadna"
]
}
</script>
After running the site through an SEO checker it also suggested using header tags ( <h1> - <h6>
), maybe we an add that somewhere also
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.
Thank you! It looks great, and solve 99% of the problem. Looking forward to see it merged 🥳
Let's leave the issue open, as we can still use some more contributions regarding canonical links and a sitemap
<title>דאטאבוס</title> | ||
<meta name="title" content='דאטאבוס - נתוני ביצוע לתחב"צ הישראלי' /> | ||
<meta name="description" | ||
content="אתר דאטאבוס מציג נתונים על איכות קווי התחבורה הציבורית בארץ, מתוך מקורות מידע ממשלתיים, במטרה להביא תמונת מצב על תפקוד התחבורה הציבורית בארץ." /> |
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.
🚀
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.
That's a weird version of the logo, but why not? I like it.
Great! |
@all-contributors please add @EtayZaslavsky for code |
I've put up a pull request to add @EtayZaslavsky! 🎉 |
Description
Added SEO tags to index.html. added an image version of the svg logo for social networks' SEO.
Please review @NoamGaash :)