Dušan Novák
Dušan Novák

Reputation: 83

How to make pageurl return an absolute url

I need Twitter tweet button below every blog post. How do I make {% pageurl %} return an absolute URL of that specific blog post?

Thanks

Upvotes: 1

Views: 655

Answers (1)

gasman
gasman

Reputation: 25227

Instead of {% pageurl my_page %}, use {{ my_page.full_url }}.

Upvotes: 2

Related Questions