forked from team/site
1
0
Fork 0

add black hr tag in post

This commit is contained in:
Ben Harris 2017-12-28 17:49:52 -05:00
parent 1403e3f2e9
commit e4d0649ab5
2 changed files with 3 additions and 2 deletions

View File

@ -6,8 +6,9 @@ foreach (array_reverse(glob("news/*.json")) as $file):
<div class="list-group">
<div class="list-group-item">
<h4 class="list-group-item-heading"><?=$post->title?></h4>
<h3 class="list-group-item-heading"><?=$post->title?></h3>
<em><?=$post->date?> - <?=$post->author?></em>
<hr style="border-top: 1px solid #000;">
<p class="list-group-item-text"><?=$post->content?></p>
</div>
</div>

View File

@ -3,5 +3,5 @@
"date": "dec 2017",
"title": "username dns redirects",
"author": "<a href=\"/~ben/\">~ben</a>",
"content": "hey all<br>there is now a dns record (and virtual host) that will redirect requests from <user>.tilde.team to tilde.team/~<user> -- for example ben.tilde.team redirects to tilde.team/~ben<br>also, the redirect preserves paths, so you can link to something under your user directory like this ben.tilde.team/blog => becomes tilde.team/~ben/blog<br><br>there are no ssl certs for these subdomains, so you will have to request those with plain http"
"content": "hey all<br>there is now a dns record (and virtual host) that will redirect requests from [user].tilde.team to tilde.team/~[user] -- for example ben.tilde.team redirects to tilde.team/~ben<br><br>also, the redirect preserves paths, so you can link to something under your user directory like this ben.tilde.team/blog => becomes tilde.team/~ben/blog<br><br>there are no ssl certs for these subdomains, so you will have to request those with plain http"
}