On Sun, 2009-02-15 at 11:45 -0800, Jason F wrote: > Hello all, > > Can someone point me in the right direction for the way Laconica is > templated? I cannot find out how to change this besides the default, > indentica, etc... CSS. Where are the pages being developed? In what > script or php page. Is it under the lib directory or the docs or > actions? I can't seem to find it. > > Thanks for any advice or a link. > Hi Jason,
/lib/action.php is where the stylesheet is defined. /config.php allows you to set the theme directory: $config['site']['theme'] = 'identica'; If you don't do anything, it will try to load the theme from /theme/identica/css/display.css or /theme/mytheme/css/display.css if yo have: $config['site']['theme'] = 'mytheme'; Also see /theme/readme.txt If you want to get down to changing the actual layout and stuff, then you probably want to see /theme/base/css/display.css (or just introduce a new stylesheet afterwards). I hope this helps. -Sarven _______________________________________________ Laconica-dev mailing list [email protected] http://mail.laconi.ca/mailman/listinfo/laconica-dev
