D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
diafrica
/
public_html
/
Filename :
graduate.php
back
Copy
<?php include 'includes/config.php'; $page_title; $page_title = ucfirst(basename(__FILE__, '.php')); if ($page_title === 'index') { $page_title = 'Home'; } $page_title = "Graduates"; include 'section/header.php'; include 'section/pages-header.php'; include 'includes/functions.php'; $Functions = new Functions(); ?> <!DOCTYPE html> <html dir="ltr" lang="en"> <!-- Start main-content --> <div class="main-content"> <div class="main-content-area"> <!-- Mission And Vision --> <br><br> <section> <div class="container bg-light"> <div class="section-content"> <?php $query = "SELECT * FROM content WHERE id='4'"; $query_run = mysqli_query($con, $query); while ($row_post = mysqli_fetch_array($query_run)) { $title = $row_post['title']; $contenter = $row_post['content']; ?> <div class="row align-items-center"> <div class="col-sm-12 col-md-12 col-lg-12 col-xl-12"> <h3 class="text-uppercase font-weight-800 mt-0 mb-0 line-height-1"><?= $title ?></h3> <p class=""><?= $contenter ?></p> </div> </div> <?php } ?> </div> </div> <div class="container"> <div class="section-content"> <?php $query = "SELECT * FROM content WHERE id='1'"; $query_run = mysqli_query($con, $query); while ($row_post = mysqli_fetch_array($query_run)) { $title = $row_post['title']; $contenter = $row_post['content']; ?> <div class="row align-items-center"> <div class="col-sm-12 col-md-12 col-lg-12 col-xl-12"> <h3 class="text-uppercase font-weight-800 mt-0 mb-0 line-height-1">Graduates</h3> <p>In affiliation with Duquesne University, Pittsburgh, PA, USA</p> <img src="" alt=""> <p class="text-justify">The Dominican Institute, in affiliation with Duquesne University, offers a Masters program in the field of Theology. The M.A. degree program is a non-specialized or non-specific program, that is, candidates do not specialize in one specific area of theology but rather take courses in all branches of theology particularly in the area of Scripture, Moral and Systematic Theology. Thus, the degree awarded at the end of the program is a M.A. Theology certificate. Having considered its multiple benefits, the Institute prefers the non-specialized M.A. program over the specialized M.A. program, which is what obtains in many institutions. Among its many benefits, the non-specialized M.A. program gives the candidate a firmer grasp and a wider vision of theology before branching off to a more specific area at a more advanced level. Thus, candidates are better equipped, that is, have more theological resources at their disposal to engage in rigorous theological discourse. The course content of the programme has been specifically designed with emphasis on research, lecture, seminar, and discussion methods. The Institute’s deliberate policy to avoid over-population makes it possible for students and lecturers to participate actively in these exercises.</p> </div> </div> <?php } ?> </div> </div> </section> </div> <!-- end main-content --> <?php include_once 'section/footer.php'; ?>