|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + {{ partial "header.html" . }} |
| 5 | + <meta name="keywords" content="CodeFryDev press, media kit, press kit, boilerplate, logo, contact"> |
| 6 | + {{ with resources.Get "css/home.css" }} |
| 7 | + {{ $minifiedCSS := . | resources.Minify }} |
| 8 | + <link rel="stylesheet" href="{{ $minifiedCSS.RelPermalink }}"> |
| 9 | + {{ end }} |
| 10 | + <link rel="stylesheet" href="/css/internal.css"> |
| 11 | + <style> |
| 12 | + .press-container { max-width: min(900px, 100%); margin: 0 auto; padding: clamp(1rem, 4vw, 2rem); box-sizing: border-box; } |
| 13 | + .press-header { text-align: center; margin-bottom: clamp(2rem, 5vw, 3rem); } |
| 14 | + .press-header h1 { font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 700; color: var(--text-primary); margin: 1rem 0 0.75rem 0; letter-spacing: -0.5px; } |
| 15 | + .press-content { background: var(--bg-primary); padding: clamp(1.5rem, 4vw, 3rem); border-radius: 24px; margin-bottom: 2rem; box-shadow: inset 8px 8px 16px var(--shadow-dark), inset -8px -8px 16px var(--shadow-light); } |
| 16 | + .press-content h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--text-primary); margin: 0 0 1rem 0; } |
| 17 | + .press-content p, .press-content ul { font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.9; color: var(--text-secondary); margin: 0 0 1.5rem 0; } |
| 18 | + .press-content a { color: var(--link-color, #0a7ea4); } |
| 19 | + .press-content ul { padding-left: 1.5rem; } |
| 20 | + </style> |
| 21 | +</head> |
| 22 | +<body> |
| 23 | + {{ partial "skip-link.html" . }} |
| 24 | + {{ partial "page-header.html" . }} |
| 25 | + <main id="main-content" role="main"> |
| 26 | + <div class="press-container"> |
| 27 | + <div class="press-header"> |
| 28 | + <h1>Press & Media</h1> |
| 29 | + </div> |
| 30 | + <div class="press-content"> |
| 31 | + {{ .Content }} |
| 32 | + </div> |
| 33 | + </div> |
| 34 | + </main> |
| 35 | + {{ partial "footer.html" . }} |
| 36 | + <script src="/js/theme.js"></script> |
| 37 | +</body> |
| 38 | +</html> |
0 commit comments