|
@@ -52,22 +52,31 @@ span.push-date{float:right;font-size:14px;color:#999;}
|
|
|
</head>
|
|
|
<body>
|
|
|
<div id="sub">
|
|
|
+ <fmt:parseDate var="cDate" value="${date}" pattern="yyyy-MM" />
|
|
|
+ <c:set var="ymDate"><fmt:formatDate value="${cDate}" type="date" pattern="yyyy-MM" /></c:set>
|
|
|
+ <c:set var="currentDate"><fmt:formatDate value="${cDate}" type="date" dateStyle="medium" /></c:set>
|
|
|
+ <c:set var="currentYear"><fmt:formatDate value="${cDate}" type="date" dateStyle="long" pattern="yyyy" /></c:set>
|
|
|
+ <c:set var="currentMonth"><fmt:formatDate value="${cDate}" type="date" dateStyle="long" pattern="MM" /></c:set>
|
|
|
+
|
|
|
+
|
|
|
<div class="container">
|
|
|
<div class="header">
|
|
|
<div class="previous">
|
|
|
<!-- <a href="javascript:;" onclick="loadApp();">이전</a> -->
|
|
|
<a href="/mobile/menu"><spring:message code="header.previous" /></a>
|
|
|
</div>
|
|
|
- <div class="title"><spring:message code="title.messageInbox" /></div>
|
|
|
+ <div class="title"><spring:message code="title.messageInbox" />
|
|
|
+ <!-- (<c:out value="${currentYear}" />) -->
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
<div class="examination">
|
|
|
<div class="daily" style="margin-top:20px;">
|
|
|
<a href="?ym=${prevMonth}" class="previous active"><spring:message code="header.previous" /></a>
|
|
|
- <fmt:parseDate var="cDate" value="${date}" pattern="yyyy-MM" />
|
|
|
- <c:set var="ymDate"><fmt:formatDate value="${cDate}" type="date" pattern="yyyy-MM" /></c:set>
|
|
|
- <c:set var="currentDate"><fmt:formatDate value="${cDate}" type="date" dateStyle="medium" /></c:set>
|
|
|
- <c:out value="${currentDate}" />
|
|
|
+
|
|
|
+ <!-- <c:out value="${currentDate}" /> -->
|
|
|
+
|
|
|
+ <c:out value="${currentYear}" />.<c:out value="${currentMonth}" />
|
|
|
<c:if test="${nextMonth <= nowMonth}">
|
|
|
<a href="?ym=${nextMonth}" class="next active"><spring:message code="header.next" /></a>
|
|
|
</c:if>
|