making nickpages work and more
This commit is contained in:
parent
3a7f36261d
commit
b46c7941db
8 changed files with 360 additions and 329 deletions
23
.htaccess
23
.htaccess
|
@ -13,6 +13,7 @@ RewriteBase /
|
|||
|
||||
RewriteRule error/(.*)\.html$ index.php?task=error&sub=$1
|
||||
|
||||
RewriteRule np/(.*) index.php?task=nickpage&user=$1
|
||||
RewriteRule ^register/(.*)? register.php?regstring=$1
|
||||
RewriteRule ^avatar/(.*)? index.php?task=rp&sum=avatar&id=$1
|
||||
RewriteRule ^chat/reports/(.*)? index.php?task=chat&sub=report&uid=$1
|
||||
|
@ -26,27 +27,5 @@ RewriteRule logs.html index.php?task=chat&sub=logs [QSA,L]
|
|||
RewriteRule private.html index.php?task=chat&sub=privatelogs [QSA,L]
|
||||
RewriteRule ^guidelines.html$ /text/rules.html [R=301,L]
|
||||
RewriteRule ^(.*\.html?)$ index.php?task=text&url=$1 [L]
|
||||
RewriteRule profile/(.*) index.php?task=rp&sub=show&name=$1
|
||||
|
||||
RewriteCond %{HTTP_HOST} ^chat\.coppertopia\.net$
|
||||
RewriteRule ^in.html$ ?task=chat&sub=in [QSA,L]
|
||||
RewriteCond %{HTTP_HOST} ^chat\.coppertopia\.net$
|
||||
RewriteRule ^$ ?task=chat [QSA,L]
|
||||
RewriteCond %{HTTP_HOST} ^chat\.coppertopia\.net$
|
||||
RewriteRule ^online.html$ ?task=chat&sub=online [QSA,L]
|
||||
RewriteCond %{HTTP_HOST} ^chat\.coppertopia\.net$
|
||||
RewriteRule ^style.css$ /modules/chat/style.css [QSA,L]
|
||||
RewriteCond %{HTTP_HOST} ^chat\.coppertopia\.net$
|
||||
RewriteRule ^mobile.css$ /modules/chat/mobile.css [QSA,L]
|
||||
|
||||
RewriteCond %{HTTP_HOST} ^logs\.coppertopia\.net$
|
||||
RewriteRule ^user/(.*)/key/(.*)$ ?task=chat&sub=privatelogs&user=$1&key=$2 [QSA,L]
|
||||
RewriteCond %{HTTP_HOST} ^logs\.coppertopia\.net$
|
||||
RewriteRule ^id/(.*)$ ?task=chat&sub=privatelogs&id=$1 [QSA,L]
|
||||
RewriteCond %{HTTP_HOST} ^logs\.coppertopia\.net$
|
||||
RewriteRule ^pdf/(.*)$ ?task=chat&sub=privatelogs&id=$1&out=pdf [QSA,L]
|
||||
RewriteCond %{HTTP_HOST} ^logs\.coppertopia\.net$
|
||||
RewriteRule ^user/(.*)$ ?task=chat&sub=privatelogs&user=$1 [QSA,L]
|
||||
RewriteCond %{HTTP_HOST} ^logs\.coppertopia\.net$
|
||||
RewriteRule ^$ ?task=chat&sub=logs [QSA,L]
|
||||
</IfModule>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<div class="entry-content">
|
||||
<p>{$n.text}</p>
|
||||
</div>
|
||||
<p><small><a href="/forum/thread-{$n.pid}.html">{$n.comments} Kommentar(e)</a></small></p>
|
||||
<p><small><a href="/forum/thread-{$n.tid}.html">{$n.comments} Kommentar(e)</a></small></p>
|
||||
</article> <!-- end entry -->
|
||||
{foreachelse}
|
||||
{/foreach}
|
||||
{/foreach}
|
||||
|
|
|
@ -54,7 +54,7 @@ class nickpage extends module{
|
|||
|
||||
$user['sitetitle']='Nickpage von '.$user['username'];
|
||||
|
||||
$result=$db->query("SELECT * FROM `" . $this->mybb_conf["prefix"] . "users` WHERE `uid`='".$user['fuid']."' LIMIT 1");
|
||||
$result=$db->query("SELECT * FROM `" . $this->mybb_conf['prefix'] . "users` WHERE `uid`='".$user['fuid']."' LIMIT 1");
|
||||
$forum=$db->fetch_array($result);
|
||||
$db->free_result($result);
|
||||
|
||||
|
@ -62,7 +62,7 @@ class nickpage extends module{
|
|||
$chat=$db->fetch_array($result);
|
||||
$db->free_result($result);
|
||||
|
||||
$result=$db->query("SELECT count(`id`) as `count` FROM `" . $config["prefix"] . "npguestbook` WHERE `guid`='".$user['uid']."'");
|
||||
$result=$db->query("SELECT count(`id`) as `count` FROM `" . $config['prefix'] . "npguestbook` WHERE `guid`='".$user['uid']."'");
|
||||
$gb_count=$db->fetch_array($result);
|
||||
$gb_pages=ceil($gb_count['count']/$count);
|
||||
$db->free_result($result);
|
||||
|
@ -132,7 +132,7 @@ class nickpage extends module{
|
|||
//$data=get_user_room($user['username']);
|
||||
if($data){
|
||||
$user['room']=$data['r'];
|
||||
$user['roomlock']='<img src="'.$path.'/themes/recensio/images/'.$data['s'].'.png" alt="'.$data['s'].'" />';
|
||||
$user['roomlock']='<img src="'.$path.'/themes/austria/images/'.$data['s'].'.png" alt="'.$data['s'].'" />';
|
||||
}
|
||||
//$forum['buddylist'];
|
||||
if($session->userdata['uid']!=""){
|
||||
|
@ -174,7 +174,6 @@ class nickpage extends module{
|
|||
$db->free_result($result);
|
||||
}
|
||||
}
|
||||
$tpl->assign('loggedin',$session->);
|
||||
$tpl->assign('friends',$friendl);
|
||||
$tpl->assign('user',$user);
|
||||
$tpl->assign('forum',$forum);
|
||||
|
|
|
@ -1,39 +1,5 @@
|
|||
<!DOCTYPE html>
|
||||
<!--[if lt IE 8 ]><html class="no-js ie ie7" lang="en"> <![endif]-->
|
||||
<!--[if IE 8 ]><html class="no-js ie ie8" lang="en"> <![endif]-->
|
||||
<!--[if IE 9 ]><html class="no-js ie ie9" lang="en"> <![endif]-->
|
||||
<!--[if (gte IE 8)|!(IE)]><!--><html class="no-js" lang="de"> <!--<![endif]-->
|
||||
<head>
|
||||
|
||||
<!--- Basic Page Needs
|
||||
================================================== -->
|
||||
<meta charset="utf-8">
|
||||
<title>{$user.sitetitle} - AustriaChat.net - Die Österreichische Chatcommunity</title>
|
||||
<meta name="description" content="" />
|
||||
<meta content="AustriaChat.net - Die Österreichische Chatcommunity" property="og:title" />
|
||||
<meta name="keywords" content="oe3 ö3 chat sms.at uboot.com chatcommunity webchat austria oesterreich forum" />
|
||||
<meta name="author" content="AustriaChat.net" />
|
||||
<meta name="description" content="Die kostenlose und werbefreie ?sterreichische Chatcommunity. Endlich wieder Chatten wie im Uboot, sms.at, Orf Chat, usw. Wir sehen uns!" />
|
||||
<link href="https://austriachat.net/chat" rel="Chat"/>
|
||||
<link href="https://austriachat.net/forum" rel="Forum"/>
|
||||
<!-- mobile specific metas
|
||||
================================================== -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
|
||||
|
||||
<!-- CSS
|
||||
================================================== -->
|
||||
<link rel="stylesheet" href="{$themepath}/css/default.css" />
|
||||
<link rel="stylesheet" href="{$themepath}/css/layout.css" />
|
||||
<link rel="stylesheet" href="{$themepath}/css/media-queries.css" />
|
||||
|
||||
<!-- Script
|
||||
================================================== -->
|
||||
<script src="js/modernizr.js"></script>
|
||||
|
||||
<!-- Favicons
|
||||
================================================== -->
|
||||
<link rel="shortcut icon" href="favicon.png" />
|
||||
|
||||
<title>{$user.sitetitle} - FunCh.at - Die Österreichische Chatcommunity</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -55,8 +21,8 @@
|
|||
<h3>Über mich:</h3>
|
||||
<p>Alter: {$user.age}<br />
|
||||
<ul>
|
||||
<li><a href="//{$domain}/forum/private.php?action=send&uid={$user.fuid}">PN an {$user.username}</a></li>
|
||||
<li>Forenposts: <a href="//{$domain}/forum/search.php?action=finduser&uid={$user.fuid}">{$forum.postnum}</a></li>
|
||||
<li><a href="//{$domain}/forum/private.php?action=send&uid={$user.fuid}">PN an {$user.username}</a></li>
|
||||
<li>Forenposts: <a href="//{$domain}/forum/search.php?action=finduser&uid={$user.fuid}">{$forum.postnum}</a></li>
|
||||
<li>{if $user.chatright!=""}{$user.username} ist ein <strong>{$user.chatright}</strong></li>{/if}
|
||||
{if $user.room!=""}{$user.username} befindet sich im Raum {$user.room}{$user.roomlock}</li>{/if}
|
||||
<li>Chatzeit: {$user.chattime}</li>
|
||||
|
@ -122,20 +88,9 @@
|
|||
|
||||
<div class="twelve columns">
|
||||
Für den Inhalt ist ausschließlich der User selbst verantwortlich.<br />
|
||||
Diese Nickpage ist Teil der <a href="//www.austriachat.net" target="_blank">AustriaChat.net Community</a>.
|
||||
Diese Nickpage ist Teil der <a href="//www.funch.at" target="_blank">FunCh.at Community</a>.
|
||||
</div>
|
||||
</div>
|
||||
<div id="go-top"><a class="smoothscroll" title="Back to Top" href="#top"><i class="fa fa-chevron-up"></i></a></div>
|
||||
|
||||
</footer> <!-- End Footer-->
|
||||
|
||||
|
||||
<!-- Java Script
|
||||
================================================== -->
|
||||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
|
||||
<script>window.jQuery || document.write('<script src="js/jquery-1.10.2.min.js"><\/script>')</script>
|
||||
<script type="text/javascript" src="js/jquery-migrate-1.2.1.min.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,106 +1,55 @@
|
|||
{literal}
|
||||
<script language="javascript" type="text/javascript">
|
||||
$(function() {
|
||||
$( "#shelf" ).accessNews({
|
||||
headline : "Medienregal von {/literal}{$user.username}{literal}",
|
||||
speed : "slow",
|
||||
slideBy : 3
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
</script>
|
||||
{/literal}
|
||||
<div id="container">
|
||||
<div id="header"><h1><span style="display: none;">{$user.sitetitle}</span></h1></div>
|
||||
<div id="gender"><img src="/npimages/{$user.gender}.png" /></div>
|
||||
<div class="dropnav">
|
||||
</div>
|
||||
<div id="wrapper">
|
||||
<div id="content">
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="de">
|
||||
<head>
|
||||
<!--- Basic Page Needs
|
||||
================================================== -->
|
||||
<meta charset="utf-8" />
|
||||
|
||||
<span class="image"><img src="{$path}np_images/{$user.np_picture}" alt="So will {$user.username} gesehen werden" /></span>
|
||||
<span class="details"><p><strong>Chat:</strong></p>{if $user.chatright!=""}{$user.username} ist ein <strong>{$user.chatright}</strong><br /><br />{/if}{if $user.room!=""}{$user.username} befindet sich im Raum {$user.room}{$user.roomlock}<br /><br />{/if}Chatzeit: <br />{$user.chattime}<br /></span>
|
||||
{if $friends!=""}
|
||||
<div class="friends">
|
||||
<h4>Freunde:</h4>
|
||||
{$friends}
|
||||
</div>
|
||||
{/if}
|
||||
<div style="clear:both;">
|
||||
Alter:
|
||||
<p>{$user.age}</p>
|
||||
Über mich:
|
||||
<div class="text">
|
||||
<p>{$user.text}</p>
|
||||
</div>
|
||||
</div>
|
||||
<hr />
|
||||
{if $shelf!=""}
|
||||
<div class="accessible_news_slider business_as_usual" id="shelf">
|
||||
<p class="javascript_css">
|
||||
<strong>Achtung:</strong> Du scheinst Javascript und/oder CSS abgeschaltet zu haben. Das Medienregal wird funktionieren, aber optimale Leistung wird nur mit aktiviertem Javascript und CSS erreicht.
|
||||
</p>
|
||||
<p class="skip_to_news"><a href="#skip_to_news">Skip to News</a></p>
|
||||
<p class="back"><a href="#" title="Zurück">« Zurück</a></p>
|
||||
<p class="next"><a href="#" title="Weiter">Weiter »</a></p>
|
||||
<a name="skip_to_news"></a>
|
||||
<ul>
|
||||
{foreach from=$shelf item=s}
|
||||
<li>
|
||||
<a href="{$s.link}"><img src="{$s.img}" width="75" height="105" alt="{$s.title}" /></a>
|
||||
<p>
|
||||
<a href="{$s.link}">{$s.title}</a><br />
|
||||
{$s.short}
|
||||
</p>
|
||||
</li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
</div>
|
||||
{/if}
|
||||
{if $gb!=""}
|
||||
<div style="margin:5px; width:695px; text-align:center;" id="pagination">
|
||||
{$pagination}
|
||||
</div>
|
||||
{foreach from=$gb item=g}
|
||||
<div style="border: 1px solid #DFE8F7;" class='np-column1-unit'>
|
||||
<a href="http://{$g.username}.recensio.org/">{$g.username}</a> schrieb am {$g.date}:
|
||||
<p>{if $deltext==1}
|
||||
<span style="float:right" style="font-size:xx-small;"><a href="/gb/del/{$guestbook.id}">[Eintrag löschen]</a>
|
||||
</span>
|
||||
{/if}
|
||||
{$g.text}<br /></p>
|
||||
</div>
|
||||
<br />
|
||||
{/foreach}
|
||||
<div style="margin:5px; width:695px; text-align:center;" id="pagination">
|
||||
{$pagination}
|
||||
</div>
|
||||
{else}
|
||||
<p>Keine Einträge. Schreib doch einfach einen. ;-)</p><br />
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
<div id="navigation">
|
||||
<p><strong>Menü</strong></p>
|
||||
<ul>
|
||||
<li><a href="http://forum.recensio.org/private.php?action=send&uid={$user.fuid}">PN an {$user.username}</a></li>
|
||||
<li><a href="http://forum.recensio.orgmember.php?action=emailuser&uid={$user.fuid}">E-Mail schreiben</a></li>
|
||||
<li>Forenposts: <a href="http://forum.recensio.org/search.php?action=finduser&uid={$user.fuid}">{$forum.postnum}</a></li>
|
||||
<li>Reviews: <a href="http://search.recensio.org/websearch/{$user.username}">{$user.reviewnum}</a></li>
|
||||
{if $user.friendlink!=""}<li>{$user.friendlink}</li>{/if}
|
||||
</ul>
|
||||
</div>
|
||||
{if $user.favourits!=''}
|
||||
<div id="links">
|
||||
<p><strong>Meine Links</strong></p>
|
||||
<ul>
|
||||
{$user.favourits}
|
||||
</ul>
|
||||
</div>
|
||||
{/if}
|
||||
<div id="footer">
|
||||
<p>Für den Inhalt ist ausschließlich der User selbst verantwortlich.<br />
|
||||
Diese Nickpage ist Teil der <a href="http://www.recensio.org" target="_blank">recensio.org Community</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
<meta name="description" content="" />
|
||||
<meta
|
||||
content="FunCh.at - Die Österreichische Chatcommunity"
|
||||
property="og:title"
|
||||
/>
|
||||
<meta
|
||||
name="keywords"
|
||||
content="oe3 ö3 chat sms.at uboot.com chatcommunity webchat austria oesterreich forum"
|
||||
/>
|
||||
<meta name="author" content="FunCh.at" />
|
||||
<meta
|
||||
name="description"
|
||||
content="Die kostenlose und werbefreie Österreichische Chatcommunity. Endlich wieder Chatten wie im Uboot, sms.at, Orf Chat, usw. Wir sehen uns!"
|
||||
/>
|
||||
<link href="https://funch.at/chat" rel="Chat" />
|
||||
<link href="https://funch.at/forum" rel="Forum" />
|
||||
<!-- mobile specific metas
|
||||
================================================== -->
|
||||
<meta
|
||||
name="viewport"
|
||||
content="width=device-width, initial-scale=1, maximum-scale=1"
|
||||
/>
|
||||
|
||||
<!-- CSS
|
||||
================================================== -->
|
||||
<link rel="stylesheet" href="{$themepath}/css/default.css" />
|
||||
<link rel="stylesheet" href="{$themepath}/css/layout.css" />
|
||||
<link rel="stylesheet" href="{$themepath}/css/media-queries.css" />
|
||||
|
||||
<!-- Script
|
||||
================================================== -->
|
||||
<script src="{$themepath}/js/modernizr.js"></script>
|
||||
<script defer src="{$themepath}/js/fontawesome/all.min.js"></script>
|
||||
|
||||
<!-- Favicons
|
||||
================================================== -->
|
||||
<link rel="shortcut icon" href="favicon.png" />
|
||||
{$content}
|
||||
|
||||
<!-- Java Script
|
||||
================================================== -->
|
||||
<script src="{$themepath}/js/jquery-3.2.1.min.js"></script>
|
||||
<script src="{$themepath}/js/main.js"></script>
|
||||
<script src="/js/odo/odometer.min.js"></script>
|
||||
{$footer}
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -589,127 +589,242 @@ ol.commentlist {
|
|||
margin-left: 17px;
|
||||
}
|
||||
|
||||
|
||||
/* g. Footer
|
||||
/* ------------------------------------------------------------------ */
|
||||
|
||||
footer {
|
||||
padding-top: 36px;
|
||||
margin-bottom: 42px;
|
||||
font-size: 13px;
|
||||
line-height: 24px;
|
||||
position: relative;
|
||||
color: #34393A;
|
||||
}
|
||||
footer h3 {
|
||||
font: 14px/24px 'opensans-bold', sans-serif;
|
||||
margin-bottom: 9px;
|
||||
font-weight: normal;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
footer p {
|
||||
margin-bottom: 24px;
|
||||
/* ===================================================================
|
||||
* # footer
|
||||
*
|
||||
* ------------------------------------------------------------------- */
|
||||
.s-footer {
|
||||
padding-top: 4.8rem;
|
||||
margin-bottom: 4.2rem;
|
||||
font-size: 1.422rem;
|
||||
line-height: 2.8rem;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
footer a, footer a:visited { color: #6C934D; }
|
||||
footer a:hover, footer a:focus { color: #34393A; }
|
||||
|
||||
footer .info { padding-right: 30px; }
|
||||
|
||||
footer ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
footer ul li {
|
||||
margin: 0;
|
||||
line-height: 24px;
|
||||
}
|
||||
footer ul li a,
|
||||
footer ul li a:visited { color: #34393A; }
|
||||
footer ul li a:hover,
|
||||
footer ul li a:focus { color: #6C934D; }
|
||||
|
||||
/* social links */
|
||||
footer .social-links {
|
||||
margin: 18px auto 42px auto;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
}
|
||||
footer .social-links li {
|
||||
display: inline-block;
|
||||
font-size: 32px;
|
||||
line-height: 48px;
|
||||
padding: 0;
|
||||
margin: 0 16px;
|
||||
color: #444;
|
||||
}
|
||||
footer .social-links li:first-child { margin-left: 0; }
|
||||
|
||||
|
||||
/* Photostream */
|
||||
footer .photostream {
|
||||
list-style: none;
|
||||
margin: 12px 0 24px -15px;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
footer .photostream li {
|
||||
display: inline-block;
|
||||
margin: 0 0 12px 12px;
|
||||
padding: 0;
|
||||
.s-footer h3 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1.6rem;
|
||||
}
|
||||
|
||||
footer .photostream li a {
|
||||
display: block;
|
||||
height: 60px;
|
||||
width: 60px;
|
||||
background: #fff;
|
||||
padding: 9px;
|
||||
border: 1px solid #E9E9E9;
|
||||
border-radius: 3px;
|
||||
}
|
||||
footer .photostream li a img {
|
||||
vertical-align: bottom;
|
||||
}
|
||||
/* copyright */
|
||||
footer .copyright {
|
||||
margin: 0;
|
||||
padding: 24px 18px 6px 18px;
|
||||
clear: both;
|
||||
text-align: center;
|
||||
|
||||
.s-footer p {
|
||||
margin-bottom: 2.4rem;
|
||||
}
|
||||
|
||||
/* Go To Top Button */
|
||||
#go-top {
|
||||
position: fixed;
|
||||
bottom: 30px;
|
||||
right: 30px;
|
||||
text-align: center;
|
||||
display: none;
|
||||
.s-footer__list {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
#go-top a {
|
||||
text-decoration: none;
|
||||
border: 0 none;
|
||||
display: block;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
background-color: #494949;
|
||||
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
|
||||
color: #fff;
|
||||
font-size: 16px;
|
||||
line-height: 48px;
|
||||
border-radius: 3px;
|
||||
.s-footer__list li {
|
||||
margin: 0;
|
||||
padding-left: 0;
|
||||
line-height: 24px;
|
||||
}
|
||||
#go-top a:hover { background: #7BA857; }
|
||||
|
||||
.s-footer__list li a {
|
||||
color: #3e3e3e;
|
||||
}
|
||||
|
||||
.s-footer__list li a:hover, .s-footer__list li a:focus {
|
||||
color: #84be5b;
|
||||
}
|
||||
|
||||
.s-footer__info {
|
||||
padding-right: 3.2rem;
|
||||
}
|
||||
|
||||
/* -------------------------------------------------------------------
|
||||
* ## footer social
|
||||
* ------------------------------------------------------------------- */
|
||||
.s-footer__social {
|
||||
margin: 1.6rem auto 4.8rem;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.s-footer__social li {
|
||||
display: inline-block;
|
||||
font-size: 3.2rem;
|
||||
line-height: 4.8rem;
|
||||
padding: 0;
|
||||
margin: 0 1.6rem;
|
||||
}
|
||||
|
||||
.s-footer__social li a {
|
||||
color: #3e3e3e;
|
||||
}
|
||||
|
||||
.s-footer__social li a:hover, .s-footer__social li a:focus {
|
||||
color: #84be5b;
|
||||
}
|
||||
|
||||
/* -------------------------------------------------------------------
|
||||
* ## photostream
|
||||
* ------------------------------------------------------------------- */
|
||||
.s-footer .photostream {
|
||||
list-style: none;
|
||||
margin: 1.2rem 0 2.4rem -1.6rem;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.s-footer .photostream li {
|
||||
display: inline-block;
|
||||
margin: 0 0 1.2rem 1.2rem;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.s-footer .photostream li a {
|
||||
display: block;
|
||||
height: 6rem;
|
||||
width: 6rem;
|
||||
background-color: #ffffff;
|
||||
padding: .9rem;
|
||||
border: 1px solid #e0e0e0;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.s-footer .photostream li a img {
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
/* -------------------------------------------------------------------
|
||||
* ## copyright
|
||||
* ------------------------------------------------------------------- */
|
||||
.ss-copyright {
|
||||
font-family: "Open Sans", sans-serif;
|
||||
margin: 0;
|
||||
padding: 3.2rem 1.6rem .8rem 1.6rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.ss-copyright span {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.ss-copyright span::after {
|
||||
content: "|";
|
||||
display: inline-block;
|
||||
padding: 0 1rem 0 1.2rem;
|
||||
color: rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.ss-copyright span:last-child::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* -------------------------------------------------------------------
|
||||
* ## go top
|
||||
* ------------------------------------------------------------------- */
|
||||
.ss-go-top {
|
||||
z-index: 2;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
-webkit-transform: translate3d(0, 200%, 0);
|
||||
transform: translate3d(0, 200%, 0);
|
||||
-webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
|
||||
transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
|
||||
position: fixed;
|
||||
bottom: 4.4rem;
|
||||
right: 4rem;
|
||||
}
|
||||
|
||||
.ss-go-top a {
|
||||
text-decoration: none;
|
||||
border: 0 none;
|
||||
display: block;
|
||||
height: 5.6rem;
|
||||
width: 5.6rem;
|
||||
border-radius: 50%;
|
||||
background-color: #84be5b;
|
||||
-webkit-transition: all .3s;
|
||||
transition: all .3s;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.ss-go-top a:hover, .ss-go-top a:focus {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
.ss-go-top svg {
|
||||
height: 1.2rem;
|
||||
width: 1.2rem;
|
||||
position: absolute;
|
||||
-webkit-transform: translate3d(-50%, -50%, 0);
|
||||
transform: translate3d(-50%, -50%, 0);
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
}
|
||||
|
||||
.ss-go-top svg path {
|
||||
fill: #ffffff;
|
||||
}
|
||||
|
||||
.ss-go-top.link-is-visible {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
|
||||
/* -------------------------------------------------------------------
|
||||
* responsive:
|
||||
* footer
|
||||
* ------------------------------------------------------------------- */
|
||||
@media screen and (max-width:900px) {
|
||||
.s-footer__bottom>.column {
|
||||
-ms-flex: 0 0 100%;
|
||||
-webkit-box-flex: 0;
|
||||
flex: 0 0 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
.s-footer__info {
|
||||
margin-bottom: 1.6rem;
|
||||
}
|
||||
.ss-copyright {
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.08);
|
||||
text-align: center;
|
||||
margin-top: 3.2rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width:800px) {
|
||||
.s-footer__social li {
|
||||
font-size: 2.8rem;
|
||||
margin: 0 1.2rem;
|
||||
}
|
||||
.s-footer-list--nav li {
|
||||
display: inline-block;
|
||||
margin-right: 1.2rem;
|
||||
}
|
||||
.s-footer-list--nav li:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
.ss-go-top {
|
||||
right: 3.2rem;
|
||||
}
|
||||
.ss-go-top a {
|
||||
height: 4.8rem;
|
||||
width: 4.8rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width:600px) {
|
||||
.ss-copyright span {
|
||||
display: block;
|
||||
}
|
||||
.ss-copyright span::after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width:400px) {
|
||||
.ss-go-top {
|
||||
right: 0rem;
|
||||
bottom: 0rem;
|
||||
}
|
||||
.ss-go-top a {
|
||||
border-radius: 4px 0 0 0;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,44 +1,79 @@
|
|||
<div class="pmnotice"></div>
|
||||
<footer>
|
||||
<footer class="s-footer">
|
||||
|
||||
<div class="row">
|
||||
<div class="row s-footer__top">
|
||||
<!--<div class="column">
|
||||
<ul class="s-footer__social">
|
||||
<li><a href="#0"><i class="fab fa-facebook-f" aria-hidden="true"></i></a></li>
|
||||
<li><a href="#0"><i class="fab fa-twitter" aria-hidden="true"></i></a></li>
|
||||
<li><a href="#0"><i class="fab fa-youtube" aria-hidden="true"></i></a></li>
|
||||
<li><a href="#0"><i class="fab fa-vimeo-v" aria-hidden="true"></i></a></li>
|
||||
<li><a href="#0"><i class="fab fa-instagram" aria-hidden="true"></i></a></li>
|
||||
<li><a href="#0"><i class="fab fa-linkedin" aria-hidden="true"></i></a></li>
|
||||
<li><a href="#0"><i class="fab fa-skype" aria-hidden="true"></i></a></li>
|
||||
</ul>
|
||||
</div>-->
|
||||
</div> <!-- end footer__top -->
|
||||
|
||||
<div class="twelve columns">
|
||||
<!--<ul class="social-links">
|
||||
<li><a href="https://twitter.com/austriachatnet"><i class="fa fa-twitter"></i></a></li>
|
||||
</ul>-->
|
||||
</div>
|
||||
|
||||
<div class="six columns info">
|
||||
{if $user.is_admin==1}
|
||||
mySQL Queries: {$queries} | Memory usage: {$memory}
|
||||
{/if}
|
||||
</div>
|
||||
<div class="two columns">
|
||||
<h3 class="social">Navigation</h3>
|
||||
<div class="row s-footer__bottom">
|
||||
|
||||
<ul class="navigate group">
|
||||
<li><a href="/">Home</a></li>
|
||||
<li><a href="/nutzungsbedingungen.html">Nutzungsbedingungen</a></li>
|
||||
<li><a href="/datenschutzerklaerung.html">Datenschutzerklärung</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="large-6 tab-full column s-footer__info">
|
||||
</div>
|
||||
|
||||
<p class="copyright">© Copyright 2025 FunCh.at. Design by <a title="Styleshout" href="http://www.styleshout.com/">Styleshout</a>.</p>
|
||||
|
||||
</div> <!-- End row -->
|
||||
<div class="large-6 tab-full column">
|
||||
<div class="row">
|
||||
<!--<div class="large-8 tab-full column">
|
||||
|
||||
<div id="go-top"><a class="smoothscroll" title="Back to Top" href="#top"><i class="fa fa-chevron-up"></i></a></div>
|
||||
<h3 class="h6">Photostream</h3>
|
||||
|
||||
</footer> <!-- End Footer-->
|
||||
<!-- Java Script
|
||||
================================================== -->
|
||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
|
||||
<script>window.jQuery || document.write('<script src="js/jquery-1.10.2.min.js"><\/script>')</script>
|
||||
<script type="text/javascript" src="js/jquery-migrate-1.2.1.min.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
<script src="/js/odo/odometer.min.js"></script>
|
||||
<ul class="photostream group">
|
||||
<li><a href="#0"><img alt="thumbnail" src="images/thumb.jpg"></a></li>
|
||||
<li><a href="#0"><img alt="thumbnail" src="images/thumb.jpg"></a></li>
|
||||
<li><a href="#0"><img alt="thumbnail" src="images/thumb.jpg"></a></li>
|
||||
<li><a href="#0"><img alt="thumbnail" src="images/thumb.jpg"></a></li>
|
||||
<li><a href="#0"><img alt="thumbnail" src="images/thumb.jpg"></a></li>
|
||||
<li><a href="#0"><img alt="thumbnail" src="images/thumb.jpg"></a></li>
|
||||
<li><a href="#0"><img alt="thumbnail" src="images/thumb.jpg"></a></li>
|
||||
<li><a href="#0"><img alt="thumbnail" src="images/thumb.jpg"></a></li>
|
||||
</ul>
|
||||
|
||||
</div>-->
|
||||
|
||||
<div class="large-4 tab-full column">
|
||||
<h3 class="h6">Navigation</h3>
|
||||
|
||||
<ul class="s-footer__list s-footer-list--nav group">
|
||||
<li><a href="/">Home</a></li>
|
||||
<li><a href="/nutzungsbedingungen.html">Nutzungsbedingungen</a></li>
|
||||
<li><a href="/datenschutzerklaerung.html">Datenschutzerklärung</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="ss-copyright">
|
||||
<span>© Copyright 2025 FunCh.at.</span>
|
||||
<span>Design by <a href="https://www.styleshout.com/">StyleShout</a></span>
|
||||
</div>
|
||||
|
||||
</div> <!-- end footer__bottom -->
|
||||
|
||||
|
||||
<div class="ss-go-top">
|
||||
<a class="smoothscroll" title="Back to Top" href="#top">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 0l8 9h-6v15h-4v-15h-6z"/></svg>
|
||||
</a>
|
||||
</div> <!-- end ss-go-top -->
|
||||
|
||||
</footer> <!-- end Footer-->
|
||||
|
||||
|
||||
<!-- Java Script
|
||||
================================================== -->
|
||||
<script src="{$themepath}/js/jquery-3.2.1.min.js"></script>
|
||||
<script src="{$themepath}/js/main.js"></script>
|
||||
<script src="/js/odo/odometer.min.js"></script>
|
||||
{$footer}
|
||||
-->
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
|
@ -51,9 +51,8 @@
|
|||
<h1 id="logo-text"><a href="/" title="">FunCh.at</a></h1>
|
||||
<p id="intro">Die Österreichische Chatcommunity</p>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<nav id="nav-wrap">
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue