You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
462 B
HTML
19 lines
462 B
HTML
{%- assign page_paths = site.header_pages | default: default_paths -%}
|
|
<header>
|
|
<div class="menu">
|
|
<a href="/index.php">pickmy.org:~$</a>
|
|
<a href="/blog">/blog</a>
|
|
<a href="/pbx">/pbx</a>
|
|
<a href="/dev">/dev</a>
|
|
<a href="https://git.pickmy.org">/git</a>
|
|
<a href="/about.php">/about</a>
|
|
| <?php
|
|
$message_array = file("/var/www/pickmy/taglines.txt");
|
|
$message = array_rand($message_array);
|
|
echo "$message_array[$message]";
|
|
?>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</header>
|