2024-10-21 17:25:49 +09:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
|
|
|
<th:block th:fragment="includes">
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
|
<meta name="Referrer" content="origin"/>
|
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
|
|
|
|
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1"/>
|
2024-10-23 17:06:27 +09:00
|
|
|
<script type="text/javascript" th:src="@{https://code.jquery.com/jquery-3.5.1.min.js}" crossorigin="anonymous"></script>
|
2025-03-11 17:44:21 +09:00
|
|
|
<title>BUM'sPace</title>
|
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
2024-10-23 10:07:45 +09:00
|
|
|
<script async th:src="@{https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9504446465764716}" crossorigin="anonymous"></script>
|
2024-10-23 17:06:27 +09:00
|
|
|
<script type="text/javascript" th:src="@{/js/common.js}"></script>
|
2025-09-05 18:02:27 +09:00
|
|
|
<link th:href="@{/css/common.css}" rel="stylesheet" />
|
|
|
|
|
<link th:href="@{/css/main.css}" rel="stylesheet" />
|
2025-08-04 16:35:49 +09:00
|
|
|
<meta name="_csrf" th:content="${_csrf.token}"/>
|
|
|
|
|
<meta name="_csrf_parameter" th:content="${_csrf.parameterName}"/>
|
2025-08-08 17:11:34 +09:00
|
|
|
<script th:inline="javascript">
|
|
|
|
|
var serverData = {
|
|
|
|
|
id: [[${srcPost != null and srcPost.id != null} ? ${srcPost.id} : 0]],
|
2025-08-11 15:55:11 +09:00
|
|
|
originId: [[${srcPost != null and srcPost.originId != null} ? ${srcPost.originId} : 0]],
|
2025-08-08 17:11:34 +09:00
|
|
|
title: /*[[${srcPost != null and srcPost.title != null} ? ${srcPost.title} : '']]*/,
|
|
|
|
|
content: /*[[${srcPost != null and srcPost.content != null} ? ${srcPost.content} : '']]*/,
|
|
|
|
|
firstPostLat: [[${srcPost != null and srcPost.firstPostLat != null} ? ${srcPost.firstPostLat} : 0]],
|
|
|
|
|
firstPostLon: [[${srcPost != null and srcPost.firstPostLon != null} ? ${srcPost.firstPostLon} : 0]],
|
|
|
|
|
writeTime: [[${srcPost != null and srcPost.writeTime != null} ? ${srcPost.writeTime} : 0]],
|
|
|
|
|
enc: /*[[${enc != null} ? ${enc} : '']]*/,
|
|
|
|
|
keyword: /*[[${keyword != null} ? ${keyword} : '']]*/
|
|
|
|
|
};
|
|
|
|
|
</script>
|
2024-10-21 17:25:49 +09:00
|
|
|
</th:block>
|
|
|
|
|
</html>
|