Skip to content

Commit a8f52d8

Browse files
author
philiptr
committed
Adding new css for foundation pages
1 parent 5db2ab3 commit a8f52d8

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

content/static/foundation-site/people.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h1 class="large-header"><span class="black">Board of Directors</span></h1>
22

3-
<table width="656" border="0" cellpadding="0" cellspacing="0">
3+
<table id="people-f" width="656" border="0" cellpadding="0" cellspacing="0">
44
<tr>
55
<td>
66

css/style.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1299,6 +1299,12 @@ ul.nostyle { margin: 0; padding: 0; list-style: none outside; }
12991299
width: 560px;
13001300
}
13011301

1302+
#people-f .content p,
1303+
#people-f .content ul,
1304+
#people-f .content table {
1305+
width: 560px;
1306+
}
1307+
13021308

13031309

13041310
/************************************************************** examples ***/

generate/foundation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222
//echo("hey");
2323
//echo($dest);
2424

25-
$page = new Page("Mission-f", "Mission");
25+
$page = new Page("Mission", "Mission");
2626
$page->content(file_get_contents($source."mission.html"));
2727
writeFile($dest."mission/index.html", $page->out());
2828

2929
$page = new Page("Projects", "Projects");
3030
$page->content(file_get_contents($source."projects.html"));
3131
writeFile($dest."projects/index.html", $page->out());
3232

33-
$page = new Page("People-f", "People");
33+
$page = new Page("People", "People");
3434
$page->content(file_get_contents($source."people.html"));
3535
writeFile($dest."people/index.html", $page->out());
3636

0 commit comments

Comments
 (0)