My Django base template looks like this:
#base.html
<title>{% block title %} My Default Title {% endblock title %}</title>
<meta property="og:title" content="{% block og_title %} My Default Title {% endblock og_title %}">
Then if I'd like to override the default title for specific page:
#page.html
{% extends "base.html" %}
{% block title %} My page Title {% endblock title %}
{% block og_title %} My page Title {% endblock _ogtitle %}
How can I set the base.html block title once (like a variable) and use across my document? Then, if I need, I override the title once in the page.html and it gets populated across?