2021-08-17

This commit is contained in:
2021-08-17 18:37:42 +09:00
parent ed54dbad52
commit d55894b614
20 changed files with 415 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
/*
* Examples for Java
*
* Copyright (c) 2021. Elex. All Rights Reserved.
* https://www.elex-project.com/
*/
package kr.pe.elex.examples;
public class MustacheSample {
}

View File

@@ -0,0 +1,18 @@
/*
* Examples for Java
*
* Copyright (c) 2021. Elex. All Rights Reserved.
* https://www.elex-project.com/
*/
package kr.pe.elex.examples;
import lombok.AllArgsConstructor;
import lombok.Data;
@Data
@AllArgsConstructor
public class Person {
private String name;
private int age;
}

View File

@@ -0,0 +1,2 @@
<h1>Sample Mustache</h1>
<p>Hello, <span>{{person.name}}</span></p>