-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
98 lines (82 loc) · 3.78 KB
/
home.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php require_once 'require.php';?>
<!DOCTYPE html>
<html>
<head>
<?php require_once 'includeBeforeTitle.php';?>
<script src="scripts/home.js"></script>
</head>
<body class="mybody">
<div class="con">
<?php require_once 'header.php';?>
<!-- 页面的主内容 -->
<div class="main_con">
<div class="main_con_inner">
<div class="home_left box_con">
<div class="home_user_name">JackWong</div>
<img class="home_user_avatar" src="" alt="">
<div class="home_details">加载中</div>
<ul class="home_ul">
<li>
<i class="fa fa-institution icon-padding"></i>
<a id="home_uni_a">加载中</a>
</li>
<li>
<i class="fa fa-wrench icon-padding"></i>
<a id="home_major_a">加载中</a>
</li>
<li>
<i class="fa fa-envelope icon-padding"></i>
<a href="" id="home_email_a">加载中</a>
</li>
</ul>
</div>
<div class="home_middle box_con">
<div class="home_follow_con">
<a class="home_follow_item">
<span>我圈</span>
<br>
<strong id="follow_count">0</strong>
<label>人</label>
</a>
<a class="home_follow_item">
<span>圈我</span>
<br>
<strong id="fans_count">0</strong>
<label>人</label>
</a>
</div>
<a id="home_follow_btn" class="gradient_btn_green home_follow_unfollow_btn">圈他</a>
<a id="home_unfollow_btn" class="gradient_btn_white home_follow_unfollow_btn">怒取圈</a>
<div class="home_groups">
<span class="home_groups_label">加入的小组</span>
<span class="chevron"> › </span>
<!-- <a class="group_item">小组名</a> -->
</div>
<div class="home_items_label">主题 <strong id="home_items_count">0</strong> 个</div>
<div class="home_items_con">
<table class="item_con" cellpadding="0" cellspacing="0" border="0" width="100%">
<tbody>
<tr>
<td class="item_main">
<a class="item_title home_title" target="_blank">该用户还没有发布主题哦~</a>
</td>
<td class="home_item_date_td">
<span class="item_date home_item_date">
<!-- 时间 -->
</span>
</td>
<td class="item_right home_item_right">
<a href="" class="item_comments_count home_comments_count">0</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- 页面右边浮动内容 -->
<!-- 页面右边浮动内容 -->
</div>
</div>
</div>
</body>
</html>