Browse Source

Blog entry titles styled.

seavenois 9 years ago
parent
commit
8cb0762dab
3 changed files with 3 additions and 3 deletions
  1. 1 1
      www/blog/buscar.php
  2. 1 1
      www/blog/index.php
  3. 1 1
      www/blog/post.php

+ 1 - 1
www/blog/buscar.php

@@ -116,7 +116,7 @@
 							echo "<meta itemprop='telephone' content='+34637140371'/>\n";
 							echo "<meta itemprop='url' content='$proto$http_host'/>\n";
 							echo "</div>\n";
-							echo "<h2 class='post_search_title'><a itemprop='url' href='$proto$http_host/blog/$r[permalink]'>$r[title]</a></h2>\n";
+							echo "<h3 class='entry_title post_search_title'><a itemprop='url' href='$proto$http_host/blog/$r[permalink]'>$r[title]</a></h2>\n";
 							# Tags (if any) and date
 							echo "<table class='post_footer post_footer_search'><tr>\n";
 							$q_tag = mysqli_query($con, "SELECT tag FROM post_tag WHERE post= $r[id];");

+ 1 - 1
www/blog/index.php

@@ -83,7 +83,7 @@
 						echo "<meta itemprop='telephone' content='+34637140371'/>\n";
 						echo "<meta itemprop='url' content='$proto$http_host'/>\n";
 						echo "</div>\n";
-						echo "<h2><a itemprop='url' href='$proto$http_host/blog/$r[permalink]'>$r[title]</a></h2>\n";
+						echo "<h3 class='entry_title'><a itemprop='url' href='$proto$http_host/blog/$r[permalink]'>$r[title]</a></h2>\n";
 						$q_image = mysqli_query($con, "SELECT image FROM post_image WHERE post = $r[id] ORDER BY idx LIMIT 1;");
 						if (mysqli_num_rows($q_image) > 0){
 							$r_image = mysqli_fetch_array($q_image);

+ 1 - 1
www/blog/post.php

@@ -108,7 +108,7 @@
 					echo "<meta itemprop='url' content='$proto$http_host'/>\n";
 					echo "</div>\n";
 					echo "<div class='entry'>\n";
-					echo "<h2>$r[title]</h2>\n";
+					echo "<h3 class='entry_title'>$r[title]</h3>\n";
 					if ($r_image != null){
 						echo "<div class='image_container'>\n";
 						echo "<meta itemprop='image' content='$proto$http_host/img/blog/$r_image[image]'/>\n";