11 lines
457 B
Twig
11 lines
457 B
Twig
{% extends "layouts" ~ DIR ~ "help.twig" %}
|
|
|
|
{% block title %}{{ "Slugs" | translate }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ "Slugs" | translate }}</h1>
|
|
<p>
|
|
{{ "The slug is the URL-friendly identifying name for this post or page. You can enter the slug yourself or have it auto-generated when the post or page is created. A slug may contain only the letters a-z, the numbers 0-9, and hyphen-minus (“-”)." | translate }}
|
|
</p>
|
|
{% endblock %}
|