Commit 0db7c8087daa611f5da168cb92766379cc364c6f
1 parent
fd72b8b7
Exists in
master
and in
1 other branch
modificado css de perguntas frequentes
git-svn-id: https://svn.bento.ifrs.edu.br/default/ASES/ASES%20-%20Web/ASES%20-%20Web/Fontes/avaliador-web@10651 c2178572-b5ca-4887-91d2-9e3a90c7d55b
Showing
1 changed file
with
51 additions
and
35 deletions
Show diff stats
src/main/webapp/WEB-INF/jsp/institucional/perguntasFrequentes.jsp
1 | -<%@page contentType="text/html" pageEncoding="UTF-8"%> | |
2 | -<%@taglib prefix="t" tagdir="/WEB-INF/tags" %> | |
3 | -<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> | |
4 | - | |
5 | -<t:baseLayout> | |
6 | - <jsp:body> | |
7 | - <div class="tile --NOVALUE--"> | |
8 | - <c:if test="${not empty mensagem}"> | |
9 | - <div id="mensagem"> | |
10 | - <div class="${status}"> <div class="alinName">${mensagem}</div></div> | |
11 | - </div> | |
12 | - </c:if> | |
13 | - | |
14 | - <div class="outstanding-header"> | |
15 | - <h2 class="outstanding-title">Perguntas Frequentes</h2> | |
16 | - </div> | |
17 | - | |
18 | - <dt> | |
19 | - <c:forEach var="perguntaFrequente" items="${perguntasFrequentes}"> | |
20 | - <dd class="summary"><strong><a href="#resp${perguntaFrequente.id}">${perguntaFrequente.pergunta}</a></strong></dd> | |
21 | - </c:forEach> | |
22 | - </dt> | |
23 | - </div> | |
24 | - | |
25 | - <div class="tile --NOVALUE--"> | |
26 | - <div class="outstanding-header"> | |
27 | - <h2 class="outstanding-title">Respostas Perguntas Frequentes</h2> | |
28 | - </div> | |
29 | - <dt> | |
30 | - <c:forEach var="perguntaFrequente" items="${perguntasFrequentes}"> | |
31 | - <dd class="summary"><a name="resp${perguntaFrequente.id}"><i>${perguntaFrequente.resposta}</i></a></dd> | |
32 | - </c:forEach> | |
33 | - </dt> | |
34 | - </div> | |
35 | - </jsp:body> | |
1 | +<%@page contentType="text/html" pageEncoding="UTF-8"%> | |
2 | +<%@taglib prefix="t" tagdir="/WEB-INF/tags" %> | |
3 | +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> | |
4 | + | |
5 | +<t:baseLayout> | |
6 | + <jsp:body> | |
7 | + <div class="funcionalidades"> | |
8 | + <ul class="breadcrumb"> | |
9 | + <li> | |
10 | + <span>Você está em:</span> | |
11 | + </li> | |
12 | + <li> | |
13 | + <a href="${pageContext.request.contextPath}">Página Inicial</a> | |
14 | + </li> | |
15 | + <li>|</li> | |
16 | + <li>Perguntas Frequentes</li> | |
17 | + </ul> | |
18 | + </div> | |
19 | + | |
20 | + <div class="tile --NOVALUE--"> | |
21 | + <c:if test="${not empty mensagem}"> | |
22 | + <div id="mensagem"> | |
23 | + <div class="${status}"> <div class="alinName">${mensagem}</div></div> | |
24 | + </div> | |
25 | + </c:if> | |
26 | + | |
27 | + <div class="outstanding-header"> | |
28 | + <h2 class="outstanding-title">Perguntas Frequentes</h2> | |
29 | + </div> | |
30 | + </div> | |
31 | + | |
32 | + <ul id="perguntas" class="perguntasRespostas"> | |
33 | + <c:forEach var="perguntaFrequente" items="${perguntasFrequentes}"> | |
34 | + <li><strong><a href="#resp${perguntaFrequente.id}">${perguntaFrequente.pergunta}</a></strong></li> | |
35 | + </c:forEach> | |
36 | + </ul> | |
37 | + | |
38 | + | |
39 | + <hr> | |
40 | + <div class="tile --NOVALUE--"> | |
41 | + <div class="outstanding-header"> | |
42 | + <h2 class="outstanding-title">Respostas Perguntas Frequentes</h2> | |
43 | + </div> | |
44 | + </div> | |
45 | + <ul id="respostas" class="perguntasRespostas"> | |
46 | + <c:forEach var="perguntaFrequente" items="${perguntasFrequentes}"> | |
47 | + <li><a name="resp${perguntaFrequente.id}" id="resp${perguntaFrequente.id}"><i>${perguntaFrequente.resposta}</i></a></li> | |
48 | + </c:forEach> | |
49 | + </ul> | |
50 | + | |
51 | + </jsp:body> | |
36 | 52 | </t:baseLayout> |
37 | 53 | \ No newline at end of file | ... | ... |