remove unnecessary icons
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
@ -1,2 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig><msapplication><tile><square70x70logo src="/ms-icon-70x70.png"/><square150x150logo src="/ms-icon-150x150.png"/><square310x310logo src="/ms-icon-310x310.png"/><TileColor>#ffffff</TileColor></tile></msapplication></browserconfig>
|
||||
<browserconfig><msapplication><tile><square310x310logo src="/ms-icon-310x310.png"/><TileColor>#ffffff</TileColor></tile></msapplication></browserconfig>
|
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 1.4 KiB |
@ -1,16 +0,0 @@
|
||||
<?php
|
||||
|
||||
foreach (array_reverse(glob("news/*.json")) as $file):
|
||||
$post = json_decode(file_get_contents($file));
|
||||
if (!$post->published) continue; ?>
|
||||
|
||||
<div class="list-group">
|
||||
<div class="list-group-item">
|
||||
<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>
|
||||
|
||||
<?php endforeach;
|
@ -1,9 +0,0 @@
|
||||
<?php
|
||||
$users = json_decode(file_get_contents("https://tilde.team/~ben/api/?users"));
|
||||
foreach ($users as $user): ?>
|
||||
<div class="list-group">
|
||||
<a href="https://tilde.team/~<?=$user?>/" class="list-group-item">
|
||||
<h5 class="list-group-item-heading">~<?=$user?></h5>
|
||||
</a>
|
||||
</div>
|
||||
<?php endforeach;
|