- 작성자: 가명 2명 → 안성민(편집자·편집 책임) 1명. 소개·푸터·ReviewBox에 편집 책임과 정정 요청 이메일(o2oteam@o2o.kr) 명시 - 의학 검토: 영상 출연 원장을 감수자로 표기하던 방식을 중단. 상단 메타 "설명 {원장}" + "의학 검토 대기", ReviewBox는 검토 완료 시에만 원장명·날짜 표시 - 근거 범위(G4): 촉감 글 FDA 승인 범위 한정, 표면 글 나노텍스처를 원장 의견으로 한정, 프리저베 30분·다음 날 출근 영상 사례 한정, 재수술 글 제품 권유를 임상 의견으로 한정, 안전 글 결론 문장 교체 - 원자료(G3): sources에 type 태그(병원 제공/원장 설명/제품 정보/규제·연구/플랫폼 집계/2차 자료). FDA P230005, FDA 위험 안내, ISO 14607 원문 링크 추가 - 일관성(G6): 후기 글 요약·FAQ에 플랫폼별 확인일 병기, "해외 환자 비중" 삭제. 홈 통계에 확인일 - 갱신 추적(G5): 글 frontmatter history + History 컴포넌트. 팩트 시트 checkedAt/nextCheck 표시 - 정정 경로(G8): /corrections 정정 기록 페이지(정정 7건), 푸터·소개·ReviewBox에 정정 요청 링크. 사이트맵 반영 - GEO 계획 문서에 0단계 반영 내역 기록 Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
17 lines
706 B
Plaintext
17 lines
706 B
Plaintext
---
|
|
// 갱신 기록. 무엇을 언제 바꿨는지 독자가 볼 수 있게 한다.
|
|
interface Props { items: { date: string; note: string }[] }
|
|
const { items } = Astro.props;
|
|
---
|
|
{items.length > 0 && (
|
|
<section class="history" aria-label="갱신 기록">
|
|
<h2>갱신 기록</h2>
|
|
<ul>{[...items].reverse().map((h) => <li><time datetime={h.date}>{h.date}</time> {h.note}</li>)}</ul>
|
|
</section>
|
|
)}
|
|
<style>
|
|
.history ul { list-style: none; padding: 0; margin: 0; font-size: 0.92rem; }
|
|
.history li { padding: 0.35rem 0; border-bottom: 1px solid var(--slate-100); }
|
|
.history time { display: inline-block; min-width: 6.5em; color: var(--slate-500); font-variant-numeric: tabular-nums; }
|
|
</style>
|