-
Notifications
You must be signed in to change notification settings - Fork 2
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
Add meta description tags to each page #609
Labels
enhancement
New feature or request
Milestone
Comments
We probably care about the SEO score of planttracer.com <http://planttracer.com/>, but why the app?
… On Oct 22, 2024, at 8:44 AM, Steve Barber ***@***.***> wrote:
Google Lighthouse reports that we can raise our Lighthouse SEO score from 90 to 100 by adding unique <meta name="description" . . . . /> elements to each web page.
Screenshot.2024-10-22.at.8.38.17.AM.png (view on web) <https://github.com/user-attachments/assets/376de5d0-9df9-40a3-9a54-a2b381787c42>
Here's an example of how to do this for our Jinja2 template html files:
Here's one for index.html:
...
{% extends 'base.html' %}
{% block head %}
<meta name="description" content="Plant Tracer is an educational web application to help students explore the genetics of plant movement"/>
{% endblock %}
{% block body %}
....
—
Reply to this email directly, view it on GitHub <#609>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AAMFHLD2IRRXXAKYOTFWI7TZ4ZCBBAVCNFSM6AAAAABQMNGX6KVHI2DSMVQWIX3LMV43ASLTON2WKOZSGYYDKMZVGA2DQMI>.
You are receiving this because you are subscribed to this thread.
|
Is there a downside to all pages having a description, apart from effort?
That is, not why, but why not?
… Message ID: ***@***.***>
|
None that I can think of.
… On Oct 22, 2024, at 10:22 AM, Steve Barber ***@***.***> wrote:
Is there a downside to all pages having a description, apart from effort?
That is, not why, but why not?
> Message ID: ***@***.***>
>
—
Reply to this email directly, view it on GitHub <#609 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AAMFHLF5KMMF5UBFTSPOLUDZ4ZNTFAVCNFSM6AAAAABQMNGX6KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDIMRZGQZTCNBWGU>.
You are receiving this because you commented.
|
And thanks for the suggestion! I just added meta description tags to planttracer.com: Plant-Tracer/web-static#15 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Google Lighthouse reports that we can raise our Lighthouse SEO score from 90 to 100 by adding unique <meta name="description" . . . . /> elements to each web page.
Here's an example of how to do this for our Jinja2 template html files:
Here's one for index.html:
The text was updated successfully, but these errors were encountered: