-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f0eb69
commit 3ad0c6a
Showing
14 changed files
with
234 additions
and
26 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<%@page import="org.support.project.web.util.JspUtil"%> | ||
<%@page pageEncoding="UTF-8" isELIgnored="false" session="false" | ||
errorPage="/WEB-INF/views/commons/errors/jsp_error.jsp"%> | ||
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> | ||
<%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> | ||
<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> | ||
|
||
<% | ||
String top = "/open.knowledge/list"; | ||
%> | ||
<% | ||
JspUtil jspUtil = new JspUtil(request, pageContext); | ||
%> | ||
|
||
<c:import url="/WEB-INF/views/commons/layout/layoutMain.jsp"> | ||
|
||
<c:param name="PARAM_HEAD"> | ||
</c:param> | ||
|
||
<c:param name="PARAM_SCRIPTS"> | ||
</c:param> | ||
|
||
<c:param name="PARAM_CONTENT"> | ||
|
||
<h3>Search Knowledge</h3> | ||
|
||
<div class="row"> | ||
<br/> | ||
<div class="col-sm-12 col-md-8"> | ||
<form role="search" action="<%=request.getContextPath()%><%=top%>"> | ||
<div class="input-group"> | ||
<div class="input-group-addon"><i class="fa fa-pencil-square-o"></i></div> | ||
<input type="text" class="form-control" placeholder="Search Keyword" | ||
name="keyword" id="keyword" value="<%=jspUtil.out("keyword")%>" /> | ||
<div class="input-group-btn"> | ||
</div> | ||
</div> | ||
<br/> | ||
<button class="btn btn-primary" type="submit"> | ||
<i class="glyphicon glyphicon-search"></i> Search | ||
</button> | ||
<a href="<%= request.getContextPath() %>/open.knowledge/list/${offset}?keyword=${keyword}&tag=${tag}&user=${user}" | ||
class="btn btn-success" role="button"><i class="fa fa-list-ul"></i> 一覧へ戻る</a> | ||
</form> | ||
</div> | ||
</div> | ||
|
||
</c:param> | ||
|
||
</c:import> | ||
|
Oops, something went wrong.