Skip to content

Commit 0e8f9ff

Browse files
committed
Use create_title() function for all appropriate pages.
1 parent e9ec47b commit 0e8f9ff

File tree

4 files changed

+18
-11
lines changed

4 files changed

+18
-11
lines changed

category/devices.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@
1010
include("../includes/nav.inc.php");
1111
?>
1212
<main id="content">
13-
<?php include_once("../includes/functions.inc.php"); ?>
14-
<h2>Devices</h2
15-
<p>Whether it's braille notetakers, embossers, mainstream accessible gadgets or otherwise, this page covers a range of devices that can help out the blind and visually impaired. It includes thoughts, reviews, hand's on, rambling and much more!</p>
13+
<?php
14+
include_once("../includes/functions.inc.php");
15+
echo create_title("Devices", "<p>Whether it's braille notetakers, embossers, mainstream accessible gadgets or otherwise, this page covers a range of devices that can help out the blind and visually impaired. It includes thoughts, reviews, hand's on, rambling and much more!</p>");
16+
?>
1617
<h2>List of Resources</h2>
1718
<div class="third-width">
1819
<div class="padinner">

category/operating-systems.php

+5-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@
1010
include_once("../includes/nav.inc.php");
1111
?>
1212
<main id="content">
13-
<?php require_once("../includes/functions.inc.php"); ?>
14-
<h2>Operating Systems</h2>
15-
<p>An operating system is a big program that run's your device, whether it be a braille note taker, desktop, laptop or even a phone. Operating systems control the overall user interface as well as the underlying technologies that make today's computing world possible.</p><p>There is an overwhelming amount of operating systems out there, from windows, to mac OS10 ... I mean macOS because apple changed the name, to the thousands of linux distributions, right the way down to mobile operating systems like IOS and android. On this page, we review the accessibility features of these operating systems from a blind standpoint, showcasing there accessibility features (or lack there of).</p><h2>List of Resources</h2>
13+
<?php
14+
require_once("../includes/functions.inc.php");
15+
echo create_title("Operating Systems", "<p>An operating system is a big program that run's your device, whether it be a braille note taker, desktop, laptop or even a phone. Operating systems control the overall user interface as well as the underlying technologies that make today's computing world possible.</p><p>There is an overwhelming amount of operating systems out there, from windows, to mac OS10 ... I mean macOS because apple changed the name, to the thousands of linux distributions, right the way down to mobile operating systems like IOS and android. On this page, we review the accessibility features of these operating systems from a blind standpoint, showcasing there accessibility features (or lack there of).</p><h2>List of Resources</h2>
16+
");
17+
?>
1618
<div class="third-width">
1719
<div class="padinner">
1820
<?php echo create_resource_list("operating-systems-windows","<h3>Windows</h3>"); ?>

category/software.php

+5-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@
1010
include("../includes/nav.inc.php");
1111
?>
1212
<main id="content">
13-
<?php include_once("../includes/functions.inc.php"); ?>
14-
<h2>Accessible Software</h2>
15-
<p>It's all well and good having a good operating system, specifically chosen from <a href="operating-systems.php">our operating systems page</a>, but what use is it without any software to help get your work done? This page covers a wide range of software programs, tools and utilities to give you, blind computer users, the most up to date information of program accessibility, or lack there of.</p>
13+
<?php
14+
include_once("../includes/functions.inc.php");
15+
echo create_title("Software", "<p>It's all well and good having a good operating system, specifically chosen from <a href='operating-systems.php'>our operating systems page</a>, but what use is it without any software to help get your work done? This page covers a wide range of software programs, tools and utilities to give you, blind computer users, the most up to date information of program accessibility, or lack there of.</p>
16+
");
17+
?>
1618
<h2>List of Resources</h2>
1719
<div class="third-width">
1820
<div class="padinner">

contributors.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@
2222
include("includes/nav.inc.php");
2323
?>
2424
<main id="content">
25-
<h2>Our contributors</h2>
26-
<p> We wouldn't be nearly as far as we are with out them. Our contributors are the people that sat in front of a keyboard for sometimes hours on end to forge this site and make it what it is today. Of course, there are those who only contributed once, or for a short amount of time and they're just as important. So, we've grouped them all together into one page. Once again <strong>THANK YOU!</strong></p>
25+
<?php
26+
echo create_title("Our Contributors", "<p> We wouldn't be nearly as far as we are with out them. Our contributors are the people that sat in front of a keyboard for sometimes hours on end to forge this site and make it what it is today. Of course, there are those who only contributed once, or for a short amount of time and they're just as important. So, we've grouped them all together into one page. Once again <strong>THANK YOU!</strong></p>
27+
");
28+
?>
2729
<h3>List of contributors</h3>
2830
<?php
2931
echo create_contributor_list();

0 commit comments

Comments
 (0)