-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreport.html
More file actions
100 lines (85 loc) · 3.19 KB
/
report.html
File metadata and controls
100 lines (85 loc) · 3.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<title>SEO Denetim Raporu</title>
<link rel="stylesheet" href="report.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<nav class="top-nav">
<div class="nav-content">
<div class="brand-area">
<span class="logo-icon">🚀</span>
<div class="brand-text">
<span class="app-name">SEO Master</span>
<span class="report-label">Denetim Raporu</span>
</div>
</div>
<div class="action-area">
<button id="printBtn" class="btn-primary-action">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path>
<polyline points="7 10 12 15 17 10"></polyline>
<line x1="12" y1="15" x2="12" y2="3"></line>
</svg>
PDF Olarak İndir / Yazdır
</button>
</div>
</div>
</nav>
<div class="paper">
<header class="report-header">
<div>
<h1 id="r-title">Yükleniyor...</h1>
<a id="r-url" href="#" target="_blank" class="url-link"></a>
</div>
<div style="display:flex; flex-direction:column; align-items:center;">
<div class="score-circle" id="r-score">--</div>
<span style="font-size:10px; color:#666; margin-top:5px;">GENEL PUAN</span>
</div>
</header>
<div class="meta-info">
<span>📅 Tarih: <b id="r-date"></b></span>
</div>
<hr>
<section class="section">
<h2>📊 Yönetici Özeti</h2>
<div id="executive-summary" class="summary-box">Veriler işleniyor...</div>
</section>
<section class="section">
<h2>🛠️ Öncelikli Aksiyon Planı</h2>
<div id="action-plan-list" class="action-plan"></div>
</section>
</div>
<div class="paper">
<section class="section">
<h2>📝 Bölüm 1: İçerik Kalitesi</h2>
<div id="content-analysis-body"></div>
</section>
<section class="section">
<h2>⚙️ Bölüm 2: Teknik SEO & Altyapı</h2>
<div id="tech-analysis-body"></div>
</section>
</div>
<div class="paper">
<section class="section">
<h2>🖼️ Bölüm 3: Bağlantılar ve Görseller</h2>
<div id="link-img-body"></div>
</section>
<section class="section">
<h2>🔎 Bölüm 4: Google Görünümü</h2>
<p class="info-text">Sitenizin arama sonuçlarındaki tahmini görünümü:</p>
<div class="google-preview" style="margin-top:15px;">
<div class="g-cite"><span></span> <em id="r-g-url" style="font-style:normal; color:#202124;"></em></div>
<div class="g-title" id="r-g-title" style="color:#1a0dab; font-size:20px; margin-bottom:5px;"></div>
<div class="g-desc" id="r-g-desc" style="color:#4d5156;"></div>
</div>
</section>
<footer class="report-footer">
Generated by <strong>Pro SEO Master</strong> Extension
</footer>
</div>
<script src="report.js"></script>
</body>
</html>