mirror of
https://github.com/DrBeef/Quake2Quest.git
synced 2025-03-13 03:42:13 +00:00
10 lines
225 B
Django/Jinja
10 lines
225 B
Django/Jinja
{% extends "base/base.j2" %}
|
|
{% block main %}
|
|
{% include "base/headers.j2" %}
|
|
|
|
{% set guard = name.upper().replace('.', '_') -%}
|
|
#ifndef {{ guard }}
|
|
#define {{ guard }}
|
|
{% block content %}{% endblock %}
|
|
#endif
|
|
{% endblock %}
|