Check-in [f1a7b0b015]
Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fixed "TUV" link. And raise preview size to 120x90 now. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f1a7b0b015d0a5ed73ebc4bc05f04030 |
User & Date: | mario 2015-04-05 18:19:25 |
Context
2015-04-05
| ||
18:19 | Firefox misinterprets `whitespace:no-wrap` again. check-in: 019dafd5a8 user: mario tags: trunk | |
18:19 | Fixed "TUV" link. And raise preview size to 120x90 now. check-in: f1a7b0b015 user: mario tags: trunk | |
18:18 | Cut down the title length to 64 chars beforehand. (New layout expands too much else.) check-in: 5fdce9467d user: mario tags: trunk | |
Changes
Changes to page_names.php.
︙ | ︙ | |||
17 18 19 20 21 22 23 | <a href="names/AC">ABC</a> <a href="names/DF">DEF</a> <a href="names/GJ">GHIJ</a> <a href="names/KL">KL</a> <a href="names/MN">MN</a> <a href="names/OQ">OPQ</a> <a href="names/RS">RS</a> | | | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | <a href="names/AC">ABC</a> <a href="names/DF">DEF</a> <a href="names/GJ">GHIJ</a> <a href="names/KL">KL</a> <a href="names/MN">MN</a> <a href="names/OQ">OPQ</a> <a href="names/RS">RS</a> <a href="names/TUV">TUV</a> <a href="names/WZ">WXYZ</a> <a href="names/09">0-9</a> </aside> <article class=project-name-columns><?php // Letter slicing (AZ or 09) |
︙ | ︙ | |||
41 42 43 44 45 46 47 | GROUP BY name ORDER BY name ", $letters); // Show foreach ($names as $proj) { $proj = array_map("input::_html", $proj); | | | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | GROUP BY name ORDER BY name ", $letters); // Show foreach ($names as $proj) { $proj = array_map("input::_html", $proj); print "<a href=/projects/$proj[name] title=\"$proj[description]…\"><img src='img/screenshot/$proj[name].jpeg' width=120 height=90 align=top> $proj[name]</a> <br> "; } ?></section><?php include("template/bottom.php"); ?> |