123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- /**
- * <https://y.st./>
- * Copyright © 2015 Alex Yst <mailto:copyright@y.st>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org./licenses/>.
- **/
- $xhtml = array(
- 'title' => 'Sick day',
- 'body' => <<<END
- <p>
- I'm taking a day off from being productive at home because I really don't feel well.
- Early this morning, I even vomited.
- It's unfortunate that I have to go into work today, though.
- The head boss has said that if anyone comes in saying that they cannot work because they are sick, they must bring a doctor's note when they get back.
- I cannot afford a trip to the doctor, so I cannot bring a note and have to actually go in.
- That's just what he gets for having such an idiotic rule in place.
- </p>
- <p>
- My <a href="/a/canary.txt">canary</a> still sings the tune of freedom and transparency.
- </p>
- END
- );
|