Processing server query string:
From config.php,
- Content map file is content.map
Parsing content map file...
print_r($ini_array)Array
(
    [z-all] => Array
        (
            [welcome] => ./content-0a74b1/welcome/
        )

    [z-type] => Array
        (
            [type1] => story
            [type2] => blog
            [type3] => book
            [type4] => article
        )

    [story] => Array
        (
            [welcome] => ./content-0a74b1/welcome/
        )

    [blog] => Array
        (
        )

    [book] => Array
        (
        )

    [content type n] => Array
        (
        )

    [article] => Array
        (
        )

)
print_r($ini_array["z-all"])Array
(
    [welcome] => ./content-0a74b1/welcome/
)

may not exist from content map.

https://docs.google.com/document/d/1H4RixpjZI2UXuHsech6taGO-PqFI4Z6c33OZZfgVt_4/edit?pli=1

Geff: A GEneric Flat-File content management system

Design and development motivations:
  1. No database
  2. Nearest plain-text data store
  3. Least dependence on deprecation-prone PHP functions and constructs
  4. Use only simple deprecation-resistant PHP functions and constructs
Features pursued:
  1. Indexer by entity type and by tagging system
  2. Security model by tagging system
  3. Extensible entity types
//
//content/
//indexer/
//sec/
//head/
//tail/
//entity/

/geff-conf.php