|
@@ -64,29 +64,37 @@ function goListPage(){
|
|
|
<div class="card-body">
|
|
|
<table class="table mobile-table">
|
|
|
<colgroup>
|
|
|
- <col style="width:75%">
|
|
|
- <col style="width:">
|
|
|
+ <col style="width:10%">
|
|
|
+ <col style="width:20%">
|
|
|
+ <col style="width:10%">
|
|
|
+ <col style="width:20%">
|
|
|
+ <col style="width:10%">
|
|
|
<col style="width:">
|
|
|
</colgroup>
|
|
|
|
|
|
<tr>
|
|
|
- <td>조회수 : <c:out value="${content.views}"></c:out></td>
|
|
|
- <th class="text-center">작성자</th>
|
|
|
- <td><c:out value="${content.createByName}(${content.createBy})" /></td>
|
|
|
+ <td colspan="6" class="text-bold text-info" style="font-size:16px;"><c:out value="${content.title}" /></td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
- <td class="text-bold text-info"><c:out value="${content.title}" /></td>
|
|
|
+ <th class="text-center">작성자</th>
|
|
|
+ <td><c:out value="${content.createByName}(${content.createBy})" /></td>
|
|
|
+
|
|
|
<th class="text-center">작성일</th>
|
|
|
<td><c:out value="${content.createDate}" /></td>
|
|
|
+
|
|
|
+ <th>조회수</th>
|
|
|
+ <td><c:out value="${content.views}"></c:out></td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
- <td colspan="3" style="white-space: pre-line;"><div style="min-height:200px;"><c:out value="${content.content}" /></div></td>
|
|
|
+ <td colspan="6" style="white-space: pre-line;">
|
|
|
+ <div style="min-height:200px;"><c:out value="${content.content}" /></div>
|
|
|
+ </td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
- <td colspan="3">
|
|
|
+ <td colspan="6">
|
|
|
<span class="badge bg-primary">첨부파일</span>
|
|
|
<a href="./content/file?postSeq=${content.postSeq}" class="text-dark" target="_blank"><c:out value="${content.fileOriginalName}" /></a>
|
|
|
</td>
|