Scenario:
"The method for managing static pages in Nucleus in the FAQ article "How do I use Nucleus to manage my static content?" is too difficult for me; can I use something simpler like text (.txt) files?"
Original forum thread (thanks, Sonja!):
http://forum.nucleuscms.org/viewtopic.php?t=14708
Method:
about.txt.about.txt file to the /skins/default/ directory.<%blog(default/index,X)%>
X is a number and replace it with this code:
<%if(category,catid,X)%> <%include(static.txt)%> <%else%> <%blog(default/index,Y)%> <%endif%>
X is the category id of your new category created just before, Y is the number of posts you would like on your main page and static is the name of your static content text file. So in our example, we would put:
<%if(category,catid,2)%> <%include(about.txt)%> <%else%> <%blog(default/index,10)%> <%endif%>