1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {{ define "main" }}
- <header>
- {{ partial "post-title" . }}
- <!-- {{ partial "post-tags" . }} -->
- <!-- {{ partial "post-categories" . }} -->
- <hr>
- </header>
- <article class="blog-post content">
- {{ .Content }}
- <ul class="py-3 px-0 mb-0">
- <li>
- <h4>電話:{{ .Params.phone }}</h4>
- </li>
- <li>
- <h4>地址:{{ .Params.address }}</h4>
- </li>
- <li>
- <h4>診所種類:{{ .Params.category }}</h4>
- </li>
- <li>
- <h4>診療科別:{{ .Params.subCategory }}</h4>
- </li>
- <li>
- <h4>機構代碼:{{ .Params.code }}</h4>
- </li>
- <li>
- <h4>
- 服務項目:
- {{ range .Params.tags }}
- <a class="btn btn-outline-dark btn-small badge text-dark" href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">
- {{ . }}
- </a>
- {{ end }}
- </h4>
- </li>
- <li>
- <h4 class="mb-0">看診時段:{{ .Params.time }}</h4>
- </li>
- </ul>
- <!-- {{ partial "translations.html" . }} -->
- <!-- {{ partial "related" . }} -->
- <hr>
- <a href="#" onclick="window.history.back()" class="back-link mt-4">
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-left mb-1"
- viewBox="0 0 16 16">
- <path fill-rule="evenodd"
- d="M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z" />
- </svg>
- <span>回到上一頁</span>
- </a>
- </article>
- {{ end }}
|