diff options
Diffstat (limited to 'pelican-bootstrap3/templates/author.html')
-rw-r--r-- | pelican-bootstrap3/templates/author.html | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/pelican-bootstrap3/templates/author.html b/pelican-bootstrap3/templates/author.html index 25d941d..07dab6e 100644 --- a/pelican-bootstrap3/templates/author.html +++ b/pelican-bootstrap3/templates/author.html @@ -1,9 +1,13 @@ -<!DOCTYPE html> -<html> -<head> - <title></title> -</head> -<body> +{% extends "article_list.html" %} -</body> -</html>
\ No newline at end of file +{% block title %}Articles by {{ author }} - {{ SITENAME }}{% endblock %} + +{% block breadcrumbs %} + {% if DISPLAY_BREADCRUMBS %} + <ol class="breadcrumb"> + <li><a href="{{ SITEURL }}" title="{{ SITENAME }}"><i class="fa fa-home fa-lg"></i></a></li> + <li><a href="{{ SITEURL }}/{{ AUTHORS_URL|default('authors.html') }}" title="Authors">Authors</a></li> + <li class="active">{{ AUTHOR }}</li> + </ol> + {% endif %} +{% endblock %} |