Sha256: 95c00a335a8d11340935af04d689e5d2826d7a8172ae34127109d9ac2f4483e0

Contents?: true

Size: 1.27 KB

Versions: 1

Compression:

Stored size: 1.27 KB

Contents

#stylesheet1 {
  attrs: 'href' "#{@image.relroot}res/style1.css";
}

#stylesheet2 {
  attrs: 'href' "#{@image.relroot}res/style2.css";
}

#styleswitcher {
  attrs: 'src' "#{@image.relroot}res/styleswitcher.js";
}

#prototype {
  attrs: 'src' "#{@image.relroot}res/prototype.js";
}

#topgif {
  attrs: 'src' "#{@image.relroot}res/top.gif";
}

#upgif {
  attrs: 'src' "#{@image.relroot}res/up.gif";
}

#leftgif {
  attrs: 'src' "#{@image.relroot}res/left.gif";
}

#rightgif {
  attrs: 'src' "#{@image.relroot}res/right.gif";
}

#valid_xhtml_png {
  attrs: 'src' "#{@image.relroot}res/valid-xhtml.png";
}

#valid_css_png {
  attrs: 'src' "#{@image.relroot}res/valid-css.png";
}

#image {
  attrs: 'src' "#{@image.relroot + @image.page_url}";
}

#breadcrumbs {
  logic: {
    item_ctr = 0
    for item in @image.breadcrumbs
      item_ctr += 1
      if item_ctr > 1 
        _element("arrow")  # expand element marked with arrow
      end
      _element("item")     # expand element marked with item
    end
  }
}

#item {
  logic: {
    item_path  = item[:path]   # retrieve path and
    item_title = item[:title]  # title from a hash
    if item_path.nil?          # if path is null then
      _cont                    # don't print <a></a>
    else
      _stag
      _cont
      _etag
    end
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gf-ralbum-0.0.5 lib/ralbum/skins/gfold/template/image_page.plogic