---
title: "템플릿"
version: 5.0
locale: ko
source: https://docs.djangoproject.com/ko/5.0/ref/templates/
canonical: https://djangodocs.dev/ko/5.0/ref/templates/
---
# 템플릿

Django’s template engine provides a powerful mini-language for defining the
user-facing layer of your application, encouraging a clean separation of
application and presentation logic. Templates can be maintained by anyone with
an understanding of HTML; no knowledge of Python is required. For introductory
material, see [템플릿](/ko/5.0/topics/templates/) topic guide.

- [The Django template language](/ko/5.0/ref/templates/language/)

  - [템플릿](/ko/5.0/ref/templates/language/#templates)
  - [Variables](/ko/5.0/ref/templates/language/#variables)
  - [필터](/ko/5.0/ref/templates/language/#filters)
  - [태그](/ko/5.0/ref/templates/language/#tags)
  - [코멘트](/ko/5.0/ref/templates/language/#comments)
  - [Template inheritance](/ko/5.0/ref/templates/language/#template-inheritance)
  - [Automatic HTML escaping](/ko/5.0/ref/templates/language/#automatic-html-escaping)
  - [Accessing method calls](/ko/5.0/ref/templates/language/#accessing-method-calls)
  - [Custom tag and filter libraries](/ko/5.0/ref/templates/language/#custom-tag-and-filter-libraries)
- [Built-in template tags and filters](/ko/5.0/ref/templates/builtins/)

  - [Built-in tag reference](/ko/5.0/ref/templates/builtins/#built-in-tag-reference)
  - [Built-in filter reference](/ko/5.0/ref/templates/builtins/#built-in-filter-reference)
  - [Internationalization tags and filters](/ko/5.0/ref/templates/builtins/#internationalization-tags-and-filters)
  - [Other tags and filters libraries](/ko/5.0/ref/templates/builtins/#other-tags-and-filters-libraries)
- [The Django template language: for Python programmers](/ko/5.0/ref/templates/api/)

  - [개요](/ko/5.0/ref/templates/api/#overview)
  - [Configuring an engine](/ko/5.0/ref/templates/api/#configuring-an-engine)
  - [Loading a template](/ko/5.0/ref/templates/api/#loading-a-template)
  - [Rendering a context](/ko/5.0/ref/templates/api/#rendering-a-context)
  - [Playing with `Context` objects](/ko/5.0/ref/templates/api/#playing-with-context-objects)
  - [Loading templates](/ko/5.0/ref/templates/api/#loading-templates)
  - [Custom loaders](/ko/5.0/ref/templates/api/#custom-loaders)
  - [Template origin](/ko/5.0/ref/templates/api/#template-origin)

> **See also**
>
> For information on writing your own custom tags and filters, see
> [커스텀 템플릿 태그 및 필터를 만드는 방법](/ko/5.0/howto/custom-template-tags/).
>
> To learn how to override templates in other Django applications, see
> [템플릿 재정의 방법](/ko/5.0/howto/overriding-templates/).
