I am a CS freshman from France and I am currently working on a very basic job-listing website with no login system (just applying directly on the job listing).
I have (almost)finished the front-end part using html, css and js but right now I am a bit confused on how I will be able to add and remove a job from the listing.
I currently hard code few jobs offers on my page (for design purposes) but it will be extremely time consuming to modify the source code by adding a new <div>
whenever we have a new job available.
This is the current code structure for 1 job:
<div class="job job-1">
<div class="job-title>
Sales Assistant
</div>
<div class="job-location">
London
</div>
<div class="job-date">
2019/07/20
</div>
</div>
When the user click on one of the job, a pop-up window appears and there is more information about the position following by the application form.