File tree Expand file tree Collapse file tree 10 files changed +193
-233
lines changed Expand file tree Collapse file tree 10 files changed +193
-233
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6+ < link href ="https://andybrewer.github.io/mvp/mvp.css " rel ="stylesheet "> </ link >
7+ < title > Remote Jobs</ title >
8+ </ head >
9+ < body >
10+ < header >
11+ < h2 > Remote Jobs</ h2 >
12+ {% if error_code == 0 %}
13+ < h4 > Not found. You searched: </ h4 >
14+ < h3 > {{error_word}}</ h3 >
15+ < h4 > Typo?</ h4 >
16+ < h5 > < a href ="/ "> ← Go back</ a > </ h5 >
17+ {% elif error_code == 1 %}
18+ < h4 > Search first!</ h4 >
19+ < h5 > < a href ="/ "> ← Go back</ a > </ h5 >
20+ {% endif %}
21+ </ header >
22+ </ body >
23+ </ html >
Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6+ < link href ="https://andybrewer.github.io/mvp/mvp.css " rel ="stylesheet "> </ link >
7+ < title > Remote Jobs</ title >
8+ </ head >
9+ < body >
10+ < header >
11+ < h2 > Remote Jobs</ h2 >
12+ </ header >
13+ < main >
14+ < form action ="/search ">
15+ < h4 > Search by term:</ h4 >
16+ < input placeholder ="i.e. python " required name ="term "/>
17+ < button > Find my job</ button >
18+ </ form >
19+ </ main >
20+ </ body >
21+ </ html >
Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6+ < link href ="https://andybrewer.github.io/mvp/mvp.css " rel ="stylesheet "> </ link >
7+ < title > Remote Jobs</ title >
8+ </ head >
9+ < body >
10+ < header >
11+ < h2 > Remote Jobs</ h2 >
12+ < h3 > {{quantities}} {{keyword}} jobs found.</ h3 >
13+ < h4 > < a href ="/download?keyword={{keyword}} "> Export to CSV</ a > </ h4 >
14+ < h5 > < a href ="/ "> ← Go back</ a > </ h5 >
15+ </ header >
16+ < main >
17+ {% for job in jobs %}
18+ < h3 > {{job.get("title")}}</ h3 >
19+ < h4 > {{job.get("location")}}</ h4 >
20+ < h4 > < a href ="{{job.get( "url ")}}" target="_blank "> Apply</ a > </ h3 >
21+ < hr >
22+ {% endfor %}
23+ </ main >
24+ </ body >
25+ </ html >
You can’t perform that action at this time.
0 commit comments