-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (73 loc) · 2.97 KB
/
Copy pathindex.html
File metadata and controls
78 lines (73 loc) · 2.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SEO Keyword Intelligence Dashboard</title>
<link rel="stylesheet" href="{{ url_for('styles') }}">
</head>
<body>
<div class="page-shell">
<div class="container">
<h1>SEO Keyword Intelligence Dashboard</h1>
<p class="subtitle">
Explore keyword ideas, estimated search demand, ranking difficulty, and search intent from a seed keyword.
</p>
<form method="POST" class="keyword-form">
<label for="seed_keyword">Seed Keyword</label>
<input
type="text"
id="seed_keyword"
name="seed_keyword"
placeholder="Enter a seed keyword"
value="{{ seed_keyword }}"
required
>
<button type="submit">Analyze Keywords</button>
</form>
{% if error %}
<p class="error-message">{{ error }}</p>
{% endif %}
{% if keywords %}
<div class="results-header">
<h2>Keyword Opportunities</h2>
<form method="POST" action="/download">
<input type="hidden" name="seed_keyword" value="{{ seed_keyword }}">
<button type="submit" class="download-btn">Download CSV</button>
</form>
</div>
<table>
<thead>
<tr>
<th>Keyword</th>
<th>Search Volume</th>
<th>Competition</th>
<th>Intent</th>
<th>Difficulty</th>
</tr>
</thead>
<tbody>
{% for keyword in keywords %}
<tr>
<td>{{ keyword.keyword }}</td>
<td>{{ keyword.volume }}</td>
<td>{{ keyword.competition }}</td>
<td>{{ keyword.intent }}</td>
<td>{{ keyword.difficulty }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<div class="insights-box">
<h3>Practical SEO Notes</h3>
<ul>
<li>Start with lower-difficulty keywords to build early visibility.</li>
<li>Match intent before writing content so pages serve the right audience need.</li>
<li>Group related keyword ideas into one content cluster instead of separate thin pages.</li>
</ul>
</div>
{% endif %}
</div>
</div>
</body>
</html>