forked from RodenLuo/py4e-cn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
40 lines (39 loc) · 1.7 KB
/
header.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<?php
if ( !isset($CFG) ) {
// Will only work in top-level files
try {
require_once("config.php");
} catch (Exception $e) {
die("Please copy config-dist.php to config.php and edit");
}
}
?>
<title>Python for Everybody: Exploring Data in Python 3</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="<?= $CFG->cdnroot ?>/assets/foundation/css/foundation.css" type="text/css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="<?= $CFG->cdnroot ?>/assets/style.css" type="text/css" />
<link rel="alternate" type="application/rss+xml" title="PythonLearn Podcast" href="http://www.pythonlearn.com/audiofeed.xml" />
<script src="<?= $CFG->cdnroot ?>/assets/foundation/js/vendor/jquery.min.js"></script>
<script src="<?= $CFG->cdnroot ?>/assets/foundation/js/foundation.js"></script>
<script>
var lastScroll = 0;
jQuery(window).scroll(function(){
var w = jQuery(window);
if (w.scrollTop() < lastScroll || w.scrollTop() == 0) {
jQuery(".title-bar").show();
lastScroll = w.scrollTop()+15;
}
if (w.scrollTop() > lastScroll){
jQuery(".title-bar").hide();
lastScroll = w.scrollTop()-10;
}
});
</script>
</head>
<body>