celise88 commited on
Commit
6edb646
·
1 Parent(s): 24de2aa

add job posting scrape capability to find my match page

Browse files
Files changed (1) hide show
  1. templates/find_match.html +4 -1
templates/find_match.html CHANGED
@@ -25,9 +25,12 @@
25
  <h1 class="pagetitle">Matching Jobs</h1>
26
  {% if jobpostings %}
27
  <h2 class="pagesubtitle">Here are the top 10 {{ jobtitle }} jobs in {{ state }} that are a great match for your skillset and interests!</h2>
 
 
 
28
  <ul class="sectionlist">
29
  {% for n in range(10) %}
30
- <li class="sectionlist__item"><a href={{ linklist[n] }}>{{ jobpostings[n] }}</a></li>
31
  {% endfor %}
32
  </ul>
33
  {% else %}
 
25
  <h1 class="pagetitle">Matching Jobs</h1>
26
  {% if jobpostings %}
27
  <h2 class="pagesubtitle">Here are the top 10 {{ jobtitle }} jobs in {{ state }} that are a great match for your skillset and interests!</h2>
28
+ <p class="form__login-label">(Hint: Click the links to find out more)</p>
29
+ <br>
30
+ <br>
31
  <ul class="sectionlist">
32
  {% for n in range(10) %}
33
+ <li class="sectionlist__item"><a style="color: #2c2161" href={{ linklist[n] }}>{{ jobpostings[n] }}</a></li>
34
  {% endfor %}
35
  </ul>
36
  {% else %}