1

small style update and draft

This commit is contained in:
Evan Pratten 2022-02-14 12:32:40 -05:00
parent a031b143b5
commit 7c23649d50
3 changed files with 22 additions and 1 deletions

View File

@ -0,0 +1,10 @@
---
layout: page
title: "I built my own private telephone network"
description: "Nobody makes phone calls anymore"
date: 2022-02-14
tags: random 3d-pipeline
draft: true
extra:
uses_katex: false
---

View File

@ -61,7 +61,18 @@ MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']], displayMat
{% block content %}
<br><br>
<article class="markdown-body">
{% if page.description %}
<h1 style="border:none;margin-bottom:0;padding-bottom:0">{{page.title}}</h1>
<h3 style="margin-top:0;color:gray;padding-bottom:.3em;border-bottom:1px solid #eaecef;">
<em>
<span style="color:rgb(186, 186, 186)">/*</span>
{{page.description}}
<span style="color:rgb(186, 186, 186)">*/</span>
</em>
</h3>
{% else %}
<h1>{{page.title}}</h1>
{% endif %}
<div style="text-align: justify;">
{{page.content | safe}}
</div>

View File

@ -54,7 +54,7 @@
<ul>
{% for page in section.pages %}
{% if not page.extra.hidden %}
<li class="blog-post-li"><a href="{{page.path}}">{{page.title}}</a> <span style="color:gray;">({{page.date}})</span>
<li class="blog-post-li"><a href="{{page.path}}">{{page.title}}</a> <span style="color:{%if page.draft%}red{%else%}gray{%endif%};">({{page.date}})</span>
</li>
{% endif %}
{% endfor %}