I would like to add a feature to a page to display a short list of people, like the one seen here.
I have done this on other sites by styling lists with css. This time however, it's for a client and I can't trust them to copy and paste a <li>, editing the name, job title and img name without messing it up.
What is the best way to go about creating this so that it can be easily reduced/added to in the dashboard? Basically, so that the user simply clicks "add person" then fills in some fields before updating the page.
Here is the architecture of what I've used in the past (to be styled with css)-
<ul class="people">
<li>
<img src="http://image_path.jpg" alt="a person" />
Jakie
<span> her job</span>
</li>
</ul>
