forked from owncloud-archive/owncloud.org
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathusers.php
executable file
·64 lines (43 loc) · 972 Bytes
/
users.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
/*
Template Name: Users Page
*/
?>
<?php
//require('/srv/www/owncloud.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(); ?>