Tagged Questions
The staticmatic tag has no wiki summary.
5
votes
1answer
468 views
Merge items in nanoc
I have been trying to use nanoc for generating a static website. I need to organize a complex arrangement pages I want to keep my content DRY.
How does the concept of includes or merges work within ...
5
votes
2answers
2k views
Haml - how do I force tag attributes to use double quotes only AND how do I order tag attributes the way I wan't?
I use staticmatic for templates I use later with PHP. There is an odd situation where some tag attributes have single quotes, while some have double quotation marks. I would like all of them to have ...
2
votes
1answer
176 views
Running staticmatic preview command results in webrick error
I get the following error with the following staticmatic preview command
staticmatic preview my-app
Site root is: my-app
StaticMatic Preview Server
Ctrl+C to exit
[2010-12-16 11:42:24] INFO WEBrick ...
1
vote
5answers
233 views
Simple Compass+HAML webserver
I love compass (SASS) and HAML. I've been using staticmatic for building static web pages. Staticmatic seams outdated (no updates, bugs). What are the alternatives?
What I would like:
$ preview .
...
1
vote
1answer
395 views
Escape forward slash in Ruby url helper
I'm trying to setup a very basic id="thisFileName" in my staticMatic project.
So far I've managed to apply the following to an /index.html (the HAML output):
- @slug = current_page.gsub(/\.html/, ...
1
vote
2answers
736 views
ruby - if string is not contained within an array
I only want to output one anchor here. If the current_page is in the array I get two (.html and -nf.html). If it is not in the array I get as many anchors as there are items in the array.
I am using ...
0
votes
3answers
787 views
Eclipse haml/sass editing + html /css generation
I've been playing with haml and sass and generating a flat site with staticmatic from the command line.
Has anyone been using an ide for this?
I have the Apatana studio (RadRails) plugin installed ...
0
votes
2answers
238 views
haml syntax - nesting partial properties
what i want is a way of nesting partial properties, this seems a tad long winded:
= partial('frames/tabs_a', :locals => {:tabs_title => 'semi-dynamic-tabs',
:tabs_id => 'p001',
:panel_a ...
0
votes
1answer
307 views
haml syntax - better way of writing this?
I have a config file full of this....
- if current_page.include? "test_string_one"
- @total_index = 3
- @next_location = '../random_string/page0.html'
- @next_name = 'title 2'
...
0
votes
2answers
161 views
haml syntax - better way of writing this?
There must be a better way of writing this- I'm just not sure how (using staticmatic)-
- if current_page.include? "0.html"
- @current_index = 1
- if current_page.include? "1.html"
- ...