Adding keyword and description meta tags to Gallery2
March 27, 2007
The File
Find the template.tpl file for your current theme. I found mine here:
gallery2/themes/matrix/templates/template.tpl
What’s this? I’m not telling.
March 27, 2007
The File
Find the template.tpl file for your current theme. I found mine here:
gallery2/themes/matrix/templates/template.tpl
March 14, 2007
Here’s my favorite, easy work-around for the lack of min-height support in Internet Explorer 6.0:
December 12, 2006
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
</body>
</html>
October 5, 2006
I find that I look for this starting template A LOT. HTML-Kit has a template for HTML 4.01 Strict when you create a new HTML file, but I use Notepad++ for most of my editing now, so I need to dig up this code all the time.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>