index.mustache에 다음과 같이 목록 출력 영역을 추가 게시글번호 제목 작성자 최종수정일 {{#posts}} {{id}} {{title}} {{author}} {{modifiedDate}} {{/posts}} {{#posts}} - posts라는 Lists를 순회한다. - java의 for문과 동일하다고 생각하면 된다. {{id}}등의 {{변수명}} - List에서 뽑아낸 객체의 필드를 사용한다. PostsRepository에 쿼리 추가 public interface PostsRepository extends JpaRepository { @Query("SELECT p FROM Posts p ORDER BY p.id DESC") List findAllDesc(); } SpringDataJpa에서 ..