diff options
Diffstat (limited to 'templates/project.html')
| -rw-r--r-- | templates/project.html | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/templates/project.html b/templates/project.html index 4653d1c..f2b73e1 100644 --- a/templates/project.html +++ b/templates/project.html @@ -1,10 +1,20 @@ {% extends "base.html" %} {% block content %} -<h1 class="title">{{ section.title }}</h1> -<ul> +<h1>{{ section.title }}</h1> +<div class="projects-list-content"> +<div class="blog-list"> {% for page in section.pages %} - <li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li> + <pre class="projects-entry wrap"> + <div class="blog-ls wrap"> +<span class="white">$ </span><span class="green">cat </span><span class="white">{{ page.extra.displayed_filename }} | </span><span class="green">glow</span> + </div> + <h2 class="blog-title"> + <a href="{{ page.extra.url | safe}}">{{ page.title }}</a> + </h2> + {{ page.content | safe }} + </pre> {% endfor %} -</ul> +</div> +</div> {% endblock content %} |
