-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjournal.xhtml
More file actions
71 lines (66 loc) · 4.03 KB
/
journal.xhtml
File metadata and controls
71 lines (66 loc) · 4.03 KB
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
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:c="http://xmlns.jcp.org/jsp/jstl/core">
<h:head>
<title>Facelet Title</title>
<h:outputStylesheet library="css" name="style.css"/>
<h:outputStylesheet library="css" name="bootstrap.min.css" />
<h:outputScript library="js" name="jquery-3.2.1.min.js" />
<h:outputScript library="js" name="bootstrap.min.js" />
<h:outputScript library="js" name="script.js" />
</h:head>
<h:body>
<ui:decorate template="template.xhtml">
<ui:define name="centerContent">
<h:form>
<div class="center-block liu5" style="width: 84%; margin-top: 50px; margin-left: 200px;margin-bottom: 100px;">
<table class="table">
<tr>
<th><h3>记录之行</h3></th>
</tr>
<tr>
<td>
<div>
<div style="margin-right: 990px;margin-top: 16px; margin-bottom: 28px;">
<h:commandLink> <img width="300px" src="resources/images/m07.jpg"/></h:commandLink>
</div>
<div style=" width: 730px; height:246px; margin-top: -260px; margin-left: 320px;" >
<h3>【征程】支教日记</h3>
<br/>
<p>2018年7月4日,我正式接到了中国支教联盟的面试通过的消息,这一刻, 我很激动,我把这个消息分享给了我身边的每一个人。
这毕竟意味着我终于有机会去完成自己从小到大的梦想了。
</p>
<h:commandLink value="点击阅读全文" action="recordLife.xhtml"></h:commandLink>
<br/><br/><br/><br/><br/><br/><br/><br/>
</div>
</div>
</td>
</tr>
<c:forEach items="#{printjournalBean.jourlist}" var="u">
<tr>
<td>
<div>
<div style="margin-right: 990px;margin-top: 16px; margin-bottom: 28px;">
<h:commandLink> <img width="300px" src="resources/images/m07.jpg"/></h:commandLink>
</div>
<div style=" width: 730px;margin-top: -260px;height:246px; margin-left: 320px;" >
<h3>#{u.speTitle}</h3>
<br/>
<p>#{u.jourContent.substring(0,3)}</p>
<h:commandLink value="点击阅读全文" action="#{printjournalBean.detailedJournal1(u)}"></h:commandLink>
<br/><br/><br/><br/><br/><br/><br/><br/>
</div>
</div>
</td>
</tr>
</c:forEach>
</table>
</div>
</h:form>
</ui:define>
</ui:decorate>
</h:body>
</html>