JSP Basic Template

Descripción

Basic JSP template with HTML structure


File Template: ✅


Prefix

jsp:base


Scopes

jsp


Snippet de código

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html>
<html>
<head>
	<meta charset="UTF-8">
	<title>${1:Título}</title>
</head>
<body>
	${2:Contenido aquí}
</body>
</html>