Ejemplo n.º 1
0
include '../php/sidebar.php';
include '../php/apps.php';
?>

<!DOCTYPE html>
<html>
    <head>
        <title>Apps | Nerdtopia</title>
        <link href="../css/bootstrap.min.css" rel="stylesheet" />
        <link href="../css/materialize.min.css" rel="stylesheet" />
        <link href="../css/custom.css" rel="stylesheet" />
        <link href="http://netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.css" rel="stylesheet">
    </head>
    <body class="full-body">
        <?php 
sidebar::generateSidebar(3);
?>
        <div class="main-content">
            <h4>App Store</h4>
            <hr/>
            <div>
                <div class="col-lg-2 col-md-4 col-sm-6 col-xs-12">
                    <?php 
apps::demo_item('Work', '8bitNerd', true, 'Free', 'briefcase', '#f44336');
?>
                </div>
                <div class="col-lg-2 col-md-4 col-sm-6 col-xs-12">
                    <?php 
apps::demo_item('Music', '8bitNerd', true, 'Free', 'music', '#4caf50');
?>
                </div>
Ejemplo n.º 2
0
<?php

include '../php/sidebar.php';
include '../php/feed.php';
?>

<!DOCTYPE html>
<html>
    <head>
        <title>News Feed | Nerdtopia</title>
        <link href="../css/bootstrap.min.css" rel="stylesheet" />
        <link href="../css/materialize.min.css" rel="stylesheet" />
        <link href="../css/custom.css" rel="stylesheet" />
        <link href="http://netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.css" rel="stylesheet">
    </head>
    <body class="full-body">
        <?php 
sidebar::generateSidebar(1);
?>
        <div class="main-content">
            <h4>News Feed</h4>
            <hr/>
            <?php 
echo feed::demo_feed();
?>
        </div>
        <script src="../js/jquery-1.12.0.min.js"></script>
        <script src="../js/bootstrap.min.js"></script>
        <script src="../js/materialize.min.js"></script>
    </body>
</html>
Ejemplo n.º 3
0
<?php

include '../php/sidebar.php';
?>

<!DOCTYPE html>
<html>
    <head>
        <title>Messages | Nerdtopia</title>
        <link href="../css/bootstrap.min.css" rel="stylesheet" />
        <link href="../css/materialize.min.css" rel="stylesheet" />
        <link href="../css/custom.css" rel="stylesheet" />
        <link href="http://netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.css" rel="stylesheet">
    </head>
    <body class="full-body">
        <?php 
sidebar::generateSidebar(2);
?>
        <div class="main-content">
            <h4>Messages</h4>
            <hr/>
        </div>
        <script src="../js/jquery-1.12.0.min.js"></script>
        <script src="../js/bootstrap.min.js"></script>
        <script src="../js/materialize.min.js"></script>
    </body>
</html>
Ejemplo n.º 4
0
include '../php/sidebar.php';
?>

<!DOCTYPE html>
<html>
    <head>
        <title>Profile | Nerdtopia</title>
        <link href="../css/bootstrap.min.css" rel="stylesheet" />
        <link href="../css/materialize.min.css" rel="stylesheet" />
        <link href="../css/custom.css" rel="stylesheet" />
        <link href="http://netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.css" rel="stylesheet">
    </head>
    <body class="full-body">
        <?php 
sidebar::generateSidebar(4);
?>
        <div class="main-content">
            <h4>Profile <a href="#" style="margin-left: 15px;"><i class='fa fa-pencil'></i></a></h4>
            <hr/><br/>
            <div>
                <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
                    <div class="card-panel white">
                        <img class="round-image" src="../img/batman.jpg" height="170px" style="float:left; margin-right: 50px;"/>
                        <div style="margin-bottom: 25px;">
                            <h4>Bruce Wayne</h4>
                            <h6 style="margin-top: -10px; color:#888"><i>it not who i am underneath but what do that defines me</i></h6>
                        </div>
                        <h6>
                            <i class='fa fa-star'></i>
                            <b>75364</b> reputation
Ejemplo n.º 5
0
include '../php/sidebar.php';
?>

<!DOCTYPE html>
<html>
    <head>
        <title>Home | Nerdtopia</title>
        <link href="../css/bootstrap.min.css" rel="stylesheet" />
        <link href="../css/materialize.min.css" rel="stylesheet" />
        <link href="../css/custom.css" rel="stylesheet" />
        <link href="http://netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.css" rel="stylesheet">
    </head>
    <body class="full-body">
        <?php 
sidebar::generateSidebar(0);
?>
        <div class="main-content">
            <h4>Welcome to Nerdtopia</h4>
            <hr/>
            <h6 style="font-size: 130%; margin-right: 30%;">
               <i style="color: #aaa">Please note that this is still a demo. You can not use the system at the moment!</i><br/><br/><br/>
                First of all, I would like to thank you for your interest in this project! You are AWESOME!<br/><br/>
                This project was started to create a new place for nerds and geeks to hang out. This project is developed
                for people that love comics, games, movies, music, series, science and technology. Here you will find people
                with similar interests. This is a place where you can learn how to program. You will learn more about
                technology and science. We discuss the latest comics, movies and all your favorite tv shows. Nobody here
                will judge you. This is the perfect place if you want to talk about your favorite operating system all day!
                This is a social network for the geeks and nerds!<br/><br/>
                Since this is not my full time job, this project will take some time to complete. That is why I decided to
                make it Open Source! I am also not a web developer, so the current website might be buggy. I am also planning
Ejemplo n.º 6
0
include '../php/sidebar.php';
include '../php/settings.php';
?>

<!DOCTYPE html>
<html>
    <head>
        <title>Settings | Nerdtopia</title>
        <link href="../css/bootstrap.min.css" rel="stylesheet" />
        <link href="../css/materialize.min.css" rel="stylesheet" />
        <link href="../css/custom.css" rel="stylesheet" />
        <link href="http://netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.css" rel="stylesheet">
    </head>
    <body class="full-body">
        <?php 
sidebar::generateSidebar(5);
?>
        <div class="main-content">
            <h4>Settings</h4>
            <hr/>
            <div>
                <div class="col-lg-3 col-md-2"></div>
                <div class="col-lg-6 col-md-8">
                    <div class='card-panel white' style="padding-left: 25%; padding-right: 25%;">
                        <h5>Notifications</h5>
                        <hr/>
                        <?php 
settings::settings_item_switch('Allow desktop notifications');
?>
                        <h5 style="margin-top: 40px;">Email Notifications</h5>
                        <hr/>