Skip to content

Commit c8935bf

Browse files
author
pnathan
committed
syncing trees; dropping mixpanel for now
2 parents 8d78112 + 0d72ede commit c8935bf

File tree

2 files changed

+28
-8
lines changed

2 files changed

+28
-8
lines changed

make.lisp

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
:external-program
33
:osicat
44
:alexandria
5-
:split-sequence))
5+
:split-sequence
6+
:local-time))
67

78
(use-package :cl-ppcre)
89

@@ -43,9 +44,12 @@
4344
(format stream
4445
"~&<div>~%
4546
<center style=\"font-size=x-small; color:lightgrey\">
46-
~%version: ~a~%
47+
~%version: ~a~%<br>~%
48+
~%time built: ~a~%
4749
</center>~%
48-
</div>" hash))))
50+
</div>"
51+
hash
52+
(local-time:now)))))
4953

5054
(defun determine-name (fn)
5155
(subseq fn (1+ (position #\~ fn))))

pandoc-data/templates/default.html5

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,27 @@ $endfor$
4747
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="site/ico/apple-touch-icon-114-precomposed.png">
4848
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="site/ico/apple-touch-icon-72-precomposed.png">
4949
<link rel="apple-touch-icon-precomposed" href="site/ico/apple-touch-icon-57-precomposed.png">
50-
51-
<!-- start Mixpanel --><script type="text/javascript">(function(e,b){if(!b.__SV){var a,f,i,g;window.mixpanel=b;a=e.createElement("script");a.type="text/javascript";a.async=!0;a.src=("https:"===e.location.protocol?"https:":"http:")+'//cdn.mxpnl.com/libs/mixpanel-2.2.min.js';f=e.getElementsByTagName("script")[0];f.parentNode.insertBefore(a,f);b._i=[];b.init=function(a,e,d){function f(b,h){var a=h.split(".");2==a.length&&(b=b[a[0]],h=a[1]);b[h]=function(){b.push([h].concat(Array.prototype.slice.call(arguments,0)))}}var c=b;"undefined"!==
52-
typeof d?c=b[d]=[]:d="mixpanel";c.people=c.people||[];c.toString=function(b){var a="mixpanel";"mixpanel"!==d&&(a+="."+d);b||(a+=" (stub)");return a};c.people.toString=function(){return c.toString(1)+".people (stub)"};i="disable track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config people.set people.set_once people.increment people.append people.track_charge people.clear_charges people.delete_user".split(" ");for(g=0;g<i.length;g++)f(c,i[g]);
53-
b._i.push([a,e,d])};b.__SV=1.2}})(document,window.mixpanel||[]);
54-
mixpanel.init("4626f95c71f3d769dfc0b3052cb09e93");</script><!-- end Mixpanel -->
50+
51+
<script>
52+
(function(){
53+
var ABTastyAccID = "f85bdca929d30e9507c1898206b0089e";
54+
var ABTastyTimeout = 2000;
55+
var ABTastyIP = "";
56+
57+
if("undefined"!==typeof sessionStorage&&"undefined"!==typeof sessionStorage.ABTastyFrameworkCode&&0!=sessionStorage.ABTastyPagesViewed%5)sessionStorage.ABTastyPagesViewed++,"undefined"===typeof sessionStorage.ABTastyDontRun&&eval(sessionStorage.ABTastyFrameworkCode);else{if("undefined"!==typeof sessionStorage&&(void 0==sessionStorage.ABTastyPagesViewed?sessionStorage.ABTastyPagesViewed=0:sessionStorage.ABTastyPagesViewed++,"undefined"!==typeof sessionStorage.ABTastyDontRun))return;var b=(new Date).getTime(),c=document.getElementsByTagName("head")[0],a=document.createElement("script");a.setAttribute("type","text/javascript");a.setAttribute("async","true");a.setAttribute("src","//d1447tq2m68ekg.cloudfront.net/"+ABTastyAccID+".js");/MSIE [678]/.test(window.navigator.userAgent)||(window.stopABTastyAutorun=!0,a.onload=function(){var a=(new Date).getTime()-b;"undefined"!==typeof ABTastyFrameworkCode&&"undefined"!==typeof sessionStorage&&(sessionStorage.ABTastyFrameworkCode=ABTastyFrameworkCode);a>ABTastyTimeout?"undefined"!==typeof sessionStorage&&(sessionStorage.ABTastyDontRun="true"):"undefined"!==typeof ABTastyFrameworkCode&&eval(ABTastyFrameworkCode)});c.appendChild(a)}
58+
})();
59+
</script>
60+
61+
<script>
62+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
63+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
64+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
65+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
66+
67+
ga('create', 'UA-44161726-1', 'articulate-lisp.com');
68+
ga('send', 'pageview');
69+
70+
</script>
5571

5672
</head>
5773
<body>

0 commit comments

Comments
 (0)