A simple django package for managing meta tags, og tags, images, and descriptions dynamically.
Project description
PAGE META
Page meta is a Django package allowing to add meta tags, og tags, images, and descriptions dynamically. Meta tags are stored in models and can be managed through Django admin (or any CMS).
Installation
pip install django-pagemeta
In settings file
INSTALLED_APPS = [
...
'pagemeta',
...
]
MIDDLEWARE = [
...
'pagemeta.middleware.MetaRequestMiddleware', # for binding meta into the request
...
]
Creating a Meta tags
- Run the server.
- Go to the Django Admin > Pagemeta > Meta for Pages.
- Create Meta for pages, use full absolute url in
page_url
. Also supports relative url but might varies in different domains. - To create default tags for the whole system, use
page_url
asdefault
orDEFAULT
(case insensitive)
Usage
Load the meta tags in template
In your template
<head>
...
{{ request.meta }}
...
</head>
Page titles are not rendered through request.meta
. To render page title see the below example.
...
<title>{{ request.meta.title }}</title>
...
For conditional titles request.meta_exact
will be good. request.meta_exact
contains the exact meta tags for the url or None
. Whereas request.meta
contains default value if no match found.
...
<title>{{ request.meta_exact.title|default:'Default title' }}</title>
...
OR
...
<title>{% if request.meta_exact %}{{ request.meta_exact.title }}{% else %}Title for {{ article }}{% endif %}</title>
...
Set a Custom Meta tags
If you want to set a custom meta tags for specific pages or conditions, you can reassign request.meta with an instance of Meta
.
Note: context variable can be overridden if MetaForPage for that url exists
Example code:
class MyView(TemplateView):
...
def get_context_data(self, **kwargs):
...
# adding custom meta
self.request.meta = Meta(
title='custom test',
description='custom description',
image_url='http://image_url_dot_com',
)
...
Contribution
Install requirements
Create your virtualenv first.
pip install -r requirements.txt
Running test cases
python manage.py test
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-pagemeta-1.2.3.tar.gz
.
File metadata
- Download URL: django-pagemeta-1.2.3.tar.gz
- Upload date:
- Size: 12.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25297f49539dd78c19ce9634bc33bdee35ec511655982b9eec0553872f148305 |
|
MD5 | 842e13faac4773be8f008ff717068642 |
|
BLAKE2b-256 | b6f0cc2d81920fbeaa7a3256bef923c7c4ab1718736323b92dfb5c2b127e1f72 |
File details
Details for the file django_pagemeta-1.2.3-py3-none-any.whl
.
File metadata
- Download URL: django_pagemeta-1.2.3-py3-none-any.whl
- Upload date:
- Size: 18.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86a30f21fcf13ba7b9959e7e7151cbd589fea2dab9608fc656c26f6a8418d9f9 |
|
MD5 | 4a3025ccf1e221450f7752aadf784adc |
|
BLAKE2b-256 | c56c0733334bb06549e6483fb39773dcdd2f0e450383325b692f3de93cdbee2e |