# mustachelet **Repository Path**: mirrors_spullara/mustachelet ## Basic Information - **Project Name**: mustachelet - **Description**: Servlet for serving Mustache based templates with backing Java code - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2025-12-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Mustache gives you a great way to generate HTML, this wraps that up in a Servlet so you can do it quite easily. Here is an example: Backing code (Index.java): @Path("/") @Template("index.html") public class Index { @Controller boolean exists() { return true; } String name() { return "Sam"; } } Template code (index.html):