web-3/target/web-3-1.0-SNAPSHOT/templates/base.xhtml
2024-11-26 02:32:07 +03:00

25 lines
766 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:p="http://primefaces.org/ui">
<h:head>
<title>
<ui:insert name="title">Web лаба 3</ui:insert>
</title>
<h:outputStylesheet name="css/styles.css"/>
</h:head>
<h:body>
<div class="header">
<h1>Web лаба 3</h1>
<p>сделал: Карпов Александр Дмитриевич</p>
<p>Группа: P3213</p>
<p>Вариант: 665</p>
</div>
<div class="content">
<ui:insert name="content">а где</ui:insert>
</div>
<ui:insert name="scripts"/>
</h:body>
</html>