Hendrik Jungnitsch
2022-09-29 d91b29ea3d62a53a65087fdcb7833edb5da7ffda
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
<!-- CDI_EXTENSION... -->
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://xmlns.jcp.org/jsf/html" xmlns:f="http://xmlns.jcp.org/jsf/core">
 
<h:head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  <title>cdi-labs</title>
  <link rel="icon" href="${resource['images:G.png']}" />
</h:head>
<h:body>
  <h2>Demos</h2>
 
  <h:panelGrid columns="2">
    <h:outputLink value="${request.contextPath}/demo/extension/article/articles.xhtml">demo/extension/article/article.xhtml</h:outputLink>
    Article Page
 
    <h:outputLink value="${request.contextPath}/demo/extension/supplier/suppliers.xhtml">demo/extension/supplier/suppliers.xhtml</h:outputLink>
    Supplier Page
  </h:panelGrid>
 
  <h2>Exercises</h2>
 
  <h:panelGrid columns="2">
    <h:outputLink value="${request.contextPath}/index.html">index.html</h:outputLink>
    Cocktail Order UI
  </h:panelGrid>
</h:body>
</html>
<!-- ...CDI_EXTENSION -->