I'm currently concatenating adjacent cells in excel to repeat common HTML elements and divs - it feels like I've gone down a strange excel path in developing my webpage, and I was wondering if an experienced web designer could let me know how I might accomplish my goals for the site with a more conventional method (aiming to use python and mysql).
I have about 40 images in my site. On this page I want to see them all lined up in a grid so I have three divs next to each other on each row, all floating left.
Instead of manually typing all the code needed for each row of images, I started concatenating repeating portions of the code with distinct portions of the code. I took the four div classes and separated the code that would need to change for each image (src="XXX" and
"XXX").
Example:
> Column D Column E Column F
> '1 <div> <img src=" filename.jpg "></div>'
The formula to generate my HTML looks like this:
= D1 & E1 & F1
I'm sure it would be easier to create a MySQL database with the filepaths and attributes saved for each of my images, so I could look through the data with a scripting language. Can anyone offer their advice or a quick script for automating the html generation?
<div><img src="{{path}}" title="{{title}}"></div>, so at the very worst, at least you're already thinking in a scalable way :P – Jeff Tratner Jun 20 '12 at 17:38