Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
<h3>Entries</h3>
<div>
	<h3><a href='/content/david.pdf'>Export list</a></h3>
	<%
	while(result.hasNext()) {
		post = result.nextNode()
	%>

	<h3> <a href="<%= post.getPath() %>.article"><%=post.title%></a> -
	<a href="<%= post.getPath() %>.edit">EDIT</a> -
	<a id="<%= post.getPath() %>" class="delete" href="#">DELETE</a> -
	<a href="<%= post.getPath() %>.pdf"><img alt="Get pdf" src="/libs/images/pdf-icon.png"></a>
	</h3>

	<%
	}
	%>

</div>

The result is something like the following image

!http://davidgsoc.files.wordpress.com/2010/08/list.png!ss

Delete existing entry

Generate the tags content structure

...