diff --git a/pages/index.dat b/pages/index.dat --- a/pages/index.dat +++ b/pages/index.dat @@ -16,6 +16,7 @@ http://www.lavenir.net/ LAvenir http://www.lefigaro.fr/ LeFigaro http://www.lemonde.fr/ LeMonde +http://www.numerama.com/ Numerama http://www.leparisien.fr/ LeParisien http://www.lesechos.fr/ LesEchos http://www.lesoir.be/ LeSoir diff --git a/pages/numerama.php b/pages/numerama.php new file mode 100644 --- /dev/null +++ b/pages/numerama.php @@ -0,0 +1,22 @@ +site = "[[Numerama]]"; + + // Gets date from article:published_time metatag + $this->yyyy = substr($this->meta_tags['article:published_time'], 0, 4); + $this->mm = substr($this->meta_tags['article:published_time'], 4, 2); + $this->dd = ltrim(substr($this->meta_tags['article:published_time'], 8, 2), '0'); + $this->unixtime = mktime(0, 0, 0, $mm, $dd, $yyyy); + + // Gets author from author metatag + $this->author = $this->meta_tags['author']; + } + +}