Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloud.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJos Poortvliet <jospoortvliet@gmail.com>2016-06-03 22:52:31 +0300
committerJos Poortvliet <jospoortvliet@gmail.com>2016-06-03 22:52:31 +0300
commit666499e6af49a0ffe6854d3854bb6d0fe9e40510 (patch)
treee3b15194ffa2ac59bcfa09fae02c79558deb79dd /users.php
parent02e22665f2c4718bfda2a169bf9e8e9a5265eb17 (diff)
first version
Diffstat (limited to 'users.php')
-rwxr-xr-xusers.php64
1 files changed, 64 insertions, 0 deletions
diff --git a/users.php b/users.php
new file mode 100755
index 00000000..17570969
--- /dev/null
+++ b/users.php
@@ -0,0 +1,64 @@
+<?php
+/*
+Template Name: Users Page
+*/
+?>
+
+<?php
+
+
+//require('/srv/www/nextcloud.org/contribook/main/contribook/lib_contribook.php');
+
+get_header();
+
+?>
+
+<div class="page-header"><h1>Contact</h1>
+</div>
+
+
+<div class="row">
+ <div class="span3">
+ <div class="sidebar">
+ <?php
+ //<div class="well">
+ // wp_nav_menu(array('theme_location' => 'dev-nav'));
+ //</div>
+ ?>
+ </div>
+ </div>
+
+ <div class="span9">
+ <div class="page-content">
+<?php
+
+/*
+ // the latest twitter posts of all users
+ echo('<h3>The latest twitter posts</h3>');
+ CONTRIBOOK_MICROBLOG::show(0,10);
+
+ // the latest github posts of all users
+// echo('<h3>The latest github posts</h3>');
+// CONTRIBOOK_GITHUB::showall(0,10);
+
+ // the latest news
+ echo('<h3>The latest news</h3>');
+ CONTRIBOOK_NEWS::show(0,10);
+
+ // the latest posts from the forum
+ echo('<h3>The latest from the forum</h3>');
+ CONTRIBOOK_FORUM::show(0,10);
+
+*/
+
+?>
+
+
+
+
+ </div>
+
+ </div>
+</div>
+
+<?php get_footer(); ?>