-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.php
More file actions
40 lines (32 loc) · 1.52 KB
/
Copy pathresources.php
File metadata and controls
40 lines (32 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
include_once((getenv('APP_PRIVATE_ROOT') ? rtrim(trim((string) getenv('APP_PRIVATE_ROOT')), '/') : dirname(__DIR__, 2) . '/private-config') . '/connectFiles/connect_cis.php');
include_once("auth.php");
include_once("teachers.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Curriculum Portfolio - English Language Center</title>
<!-- Meta Information -->
<meta charset="utf-8">
<meta name="description" content="This section of the ELC website outlines the ELC curriculum." />
<meta name="keywords" content="ELC, BYU, ESL, Curriculum, Levels, Learning, Outcomes" />
<meta name="robots" content="ELC, BYU, ESL, Curriculum, Levels, Learning, Outcomes" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php include("content/styles_and_scripts.html"); ?>
</head>
<body>
<?php require_once __DIR__ . "/content/shared-shell.php"; curriculum_render_site_header(); ?>
<main class="container portfolio-main">
<section class="hero-card portfolio-hero content-card-spotlight">
<p class="portfolio-eyebrow">Resources</p>
<h1 class="portfolio-title">Teaching Resources</h1>
<p class="portfolio-subtitle">The following shared resources are available to support teaching at the English Language Center.</p>
</section>
<section class="portfolio-table-card">
<iframe class="google_folder" src="https://drive.google.com/embeddedfolderview?id=0B9DQPyJT9PIUV2ZGNmlYQTJEQmM#list" title="Teaching resources folder"></iframe>
</section>
</main>
<?php curriculum_render_footer(); ?>
</body>
</html>