added translucient-fluidity

From the beginnings of Friendica, a derived theme from duepuntozero (so this has to be available in the Friendica themes directory).
Inspired by a Wordpress theme.
This commit is contained in:
Tobias Diekershoff 2022-06-21 08:55:31 +02:00
commit 91771ae8ce
Signed by: tobias
GPG key ID: 25FE376FF17694A1
24 changed files with 719 additions and 0 deletions

View file

@ -0,0 +1,21 @@
<?php get_header(); ?>
<ul id="nav">
<li <?php if(is_home()){echo 'class="first current_page_item"';}?>><a href="<?php bloginfo('siteurl'); ?>/" title="Home">Home</a></li>
<?php wp_list_pages('title_li=&depth=1');?>
</ul>
<div id="container">
<div id="content">
<h2 class="center">Error 404 - Not Found</h2>
<p>The document or page does not exist! Please search using the form below <br />
<form id="searchform" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<input type="text" name="s" id="s" size="15" />
<input type="submit" value="<?php _e('Go'); ?>" />
</form></p>
<a href="<?php bloginfo ('home') ?>" class="alignleft">Blog Home</a>
</div>
<div id="menu">
<?php get_sidebar();?>
</div>
<?php get_footer(); ?>