1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- """
- Monomotapa - A Micro CMS
- Copyright (C) 2014, Paul Munday.
- PO Box 28228, Portland, OR, USA 97228
- paul at paulmunday.net
- Modificado por: Rodrigo Garcia 2017 https://rmgss.net/contacto
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero 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 Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- Monomotapa:
- a city whose inhabitants are bounded by deep feelings of friendship,
- so that they intuit one another's most secret needs and desire.
- For instance, if one dreams that his friend is sad, the friend will
- perceive the distress and rush to the sleepers rescue.
- (Jean de La Fontaine, *Fables choisies, mises en vers*, VIII:11 Paris,
- 2nd ed., 1678-9)
- cited in :
- Alberto Manguel and Gianni Guadalupi, *The Dictionary of Imaginary Places*,
- Bloomsbury, London, 1999.
- A micro cms written using the Flask microframework, orignally to manage my
- personal site. It is designed so that publishing a page requires no more than
- dropping a markdown page in the appropriate directory (though you need to edit
- a json file if you want it to appear in the top navigation).
- It can also display its own source code and run its own unit tests.
- The name 'monomotapa' was chosen more or less at random (it shares an initial
- with me) as I didn't want to name it after the site and be typing import
- paulmunday, or something similar, as that would be strange.
- """
|