Templating systems are generally composed of a Template Engine, a Content Resource and a Template Resource.

learn more… | top users | synonyms

0
votes
0answers
11 views

Good way to do editable messages for plugin?

I am working on a plugin, and have a page setup for the theme developer to be able to edit how my plugin is displayed, and the plugin just injects itself where the theme developer sets certain divs ...
1
vote
0answers
30 views

How good is the ability of Aspose Slides to create PPTX files with templating?

I am trying to use Aspose Slides to generate a presentation using a template PPTX with a master slide and some layout slides that contain placeholders. I want to make the slides conform to different ...
2
votes
1answer
68 views

MeteorJS: Generating emails from templates server-side

I need to send emails from MeteorJS application and I want to generate them using html templates, not by "html-in-js" stuff. What I've tried to do: 1) Use Template.emailTemplate(data), but Template is ...
-2
votes
0answers
8 views

Light windows app for templating static html sites [closed]

I only use Dreamweaver for it's templating feature and am looking for a simple windows app that can take care of templating. Any suggestions would be appreciated!
0
votes
0answers
38 views

Client-side templating: JavaScript engine (like Handlebars, Dust…) or XSLT

After some considerations and investigation about client-side HTML templating today, I've found that, while client-side JavaScript templating (like Handlebars, Dust and others) are a powerful choice, ...
0
votes
2answers
99 views

Laravel blade templates

I'm having difficulty getting my head around laravels blade templates. I have a master.blade and I have an index.blade, no problems there. What I want to do is inside my index.blade I want to nest ...
4
votes
5answers
220 views

Accessing parent object variables from within the scope of the child object in php

So I have been researching templating engines and how to create my own simple templating engine. From a pure learning perspective, I read through a couple of them like this one here. Using a little ...
0
votes
3answers
83 views

Include HTML blocks Using node.js

This is what I want but probably can't have: Using node.js and express and maybe ejs, I would like to, while writing a regular HTML file in my client dir, server-side-include a template block of ...
0
votes
0answers
7 views

Is there any javascript library that implements item recycling - Like itemrenderers in Flex?

The title Says it all. I was wondering if there is any js templating library that implements recycling of items. This would be very useful for mobile applications. Thanks in advance.
0
votes
0answers
26 views

how can I create a php theme based applications

How can i create a PHP theme based application And which is better : Create my own or use engines such as Smarty? I wanna do it to be possible install themes on my application
0
votes
0answers
19 views

PHP templating variables - smarty style (or other better style) and unlimited depth

I'm working on a template system that first and foremost needs to be efficient and secondly needs to be easily readable. I have done something nearly identical before, but it involved preg_match_all ...
2
votes
1answer
70 views

Assign content to multiple blocks inside a mixin which generates a nested HTML structure dynamically in Jade?

I want to create the following HTML structure <div class="outerspace"> <div class="inner1"><p>Inner1 content</p></div> <div class="inner2"><p>Inner2 ...
1
vote
1answer
44 views

When calling a mixin in Jade, what's the difference between “+” and mixin keyword?

The docmentation tells us to call a mixin by prepending the keyword mixin to the actual mixin. .bar mixin foo(arguments) But on different places I saw people calling a mixin by prepending a ...
0
votes
1answer
102 views

How to pass javascript array variable values to html using angular.js

I am new to angular.js I want to create a table by populating values from a javascript array variable. I created and entered values in my variable like this var result=[]; ...
1
vote
1answer
58 views

Template a javascript file using underscore.js

I am using node.js at the server with express.js for some rest calls, my client side is uses backbone.js for the models and views. I am using underscore.js for templating some small html code for the ...
0
votes
0answers
23 views

Render a webpage using Mustache templating library

Here is the gist of my requirements: I have webpage in a domain, say www.domain-one.com I want to display this webpage, within another page in another domain, say www.domain-two.com A simple ...
0
votes
0answers
122 views

Smarty - 'unable to write file… templates_c'. (smarty_internal_write_file.php:44)

I'm using Smarty for the first time. It works fine on my laptop (MAMP) but when I try and run a basic template on my production server (Windows) I get this error message: Fatal error: Uncaught ...
0
votes
1answer
58 views

Render link-field url and title separately in node template in Drupal 7

If I print my link field in the node template like: [?php print render($content['field_link']); ?] I will get this field rendered the way it's set in the display settings of the content-type. But ...
2
votes
2answers
213 views

Is there a standard static site generator for Grunt.js?

I'm looking to build a reasonably complex multi-page site using Grunt.js, and I'd like to be able to render my html from a bunch of partials and base templates etc, so as to remain DRY. I'm also ...
0
votes
1answer
59 views

removing the need for {ldelim} and {rdelim} in JavaScript within Smarty 2 templates

I have the following block of JavaScript in a Smarty 2 template file. The code is verbatim to what has been provided to me from the provider, but it quite noticable that I have had to add in a number ...
0
votes
4answers
43 views

load whole html script in php file

Advance apologies for this noob question but i have to do it perfectly. I have made a website which are all html files and all are working fine. Now for the session handing i have to convert all the ...
0
votes
1answer
22 views

JS/JQuery & MustacheJS: JS not working on mustache's products?

I inject a MustacheJS template (button element) into HTML. Then use JS to toggle CSS of buttons if clicked. This JS works on all buttons but not on those created by mustachejs: function ...
0
votes
1answer
21 views

js: templating engine for {% block include %}-style templating

Currently working on a project in backbone.js, which leverages Underscore as a templating engine. AFAIK, underscore doesn't let you do template inheritance in the style of {% block whatever %} or {{ ...
0
votes
3answers
71 views

Laravel3: Loading a content inside a content dynamically

I have a form. When user submits the form and gets error, I show it like this: Register Controller return View::make('theme-admin.user_add')->with('error_msg', validation->errors->first()); ...
3
votes
1answer
89 views

Why does my jQuery templating approach not work in jQuery 1.9.1 anymore?

Please see this fiddle: http://jsfiddle.net/VdZJx/2/ $(function() { var li = $($("#link-item-template").html()).find("a").attr({ href: "javascript:;" }).html("Toggle"); ...
0
votes
0answers
50 views

User custom theme support with rails assets pipeline

I have a rails app that allows users to create their own website easily but they share the same page structure. I plan to switch my classic rails views for a templating language such as liquid or ...
0
votes
2answers
30 views

html/javascript: templating options in regular html

Converting a project from django into a flask API backend + backbone.js frontend It was nice to be able to do {% include %} options in the HTML in order to make it more modular, i.e. I was able to ...
0
votes
1answer
78 views

NodeJS + Mongoose + Backbone.Marionette nested Collection templating

all I'm developing an application that store my multimedia catalog, I've JSON collection like this : { "_id" : ObjectId( "5142f55394474e2aac000001" ), "contentType" : "binary/octet-stream", ...
0
votes
1answer
159 views

Jade Mixin: 500 TypeError: Cannot read property 'length' of undefined

I've got a mixin causing me trouble: mixin dialog(title, description, choices) form.choices.dialog.row legend h1 #{title} p.description #{description} ...
0
votes
1answer
517 views

Where can I find good information/tutorials on templating in Laravel 4?

I've been looking for information or tutorials regarding how to construct nice layouts in laravel 4 and I really can't find much. Mostly people just seem to say "it changed a lot from 3". That's ...
1
vote
2answers
69 views

Natural Templating .html (like Thymeleaf) for Node.js

Is there Natural Templating for Node.js Natural Templating (like Thymeleaf template engine) is when template page or it's part can be perfectly displayed by a browser as a prototype, without being ...
0
votes
0answers
44 views

After include cant see other html tags in section - Laravel templating

After include cant see other html tags in section // views/page.blade.php: @layout('master') @section('content') HTML - works @include('somefile') // works HTML - NOT ...
1
vote
2answers
96 views

Suppress python markdown wrapping text in <p></p>

I'm using python markdown as a filter for Jinja2 to generate html. As part of that, I fill in table entries from the render input. Passing the input through the markdown filter always wraps the text ...
0
votes
1answer
32 views

Templating with user defined classes as a parameter

I'm having a bit of trouble with templating and composition-style coding. I have an object being created inside the constructor of another with the *this parameter. Sorry, if I'm being unclear. The ...
1
vote
1answer
255 views

Bootstrap left/right aligned background image repeat-pattern with 100% page height

So i'm building a bootstrap template and the problem I've encountered is trying to add a background image aligned to left side of site and a duplicate on the right side, it's like a small 40px width ...
1
vote
1answer
78 views

Client-side templating for a Single page site

Usually in a CMS, there is a template engine where we define "templated html pages", when URL is accessed for a specific page it returned the "templated" rendered page. However, I want to do single ...
2
votes
2answers
100 views

what language is this

I have to make some changes to a .net website that has only a .cs (webservice class) file but several html files with code like this: [%- SET pageid = factory.get_param("id") -%] [%- SET item = ...
0
votes
1answer
39 views

Misaligned source code in browser

Let's say I have default.php as my main layout. <body> <div class="container"> <?php include_once("templates/home.php"); </div> </body> When I click to ...
3
votes
1answer
249 views

kendoUI templating type=“text/x-kendo-template” required?

More of an "out of curiosity question", when creating a kendoUI external (script) template, they say to use this syntax: <script type="text/x-kendo-template" id="templateNameHere"> ...
0
votes
1answer
50 views

Call 1 view in code ignighter but share header/footer amoung all views? [duplicate]

Loving Codeignighter, but i'm find it annoying that I have to call a header, footer and the main view for each controller. What is the best way to share a header/footer amoung all views and minimize ...
1
vote
1answer
60 views

Adding templating to D3

http://bl.ocks.org/JohnBerryman/2295155 This is my attempt to add templating to D3. I drew the original face in Inkscape and then I turned the SVG into an iCanHaz template and made the template ...
0
votes
0answers
44 views

declared variable does not show id after assigning inside each()

I am using underscorejs templating engine. I am declaring variable imdb_id at the top of outer each function. Then I am assigning value to this variable and then want to display it outside of inner ...
0
votes
0answers
45 views

How do I get a reference to a property value higher up in an object - Handlebars.js

I have a pretty complexed JSON structure and I'm several levels down inside it. What I'm trying to do is reference a property on the top level but I'm not sure how to get the whole object and access ...
2
votes
1answer
83 views

Backbone templates in production

From https://github.com/ccoenraets/backbone-jax-cellar/blob/master/WebContent/js/utils.js: tpl = { // Hash of preloaded templates for the app templates: {}, // Recursively pre-load all the ...
1
vote
1answer
114 views

Inlining Javascript in Jade while maintaining indentation

Is there a way to inline Javascript code in Jade script tag while maintaining indentation? Removing indentation works but it makes code extremely difficult to read and modify. Another option is to ...
0
votes
1answer
99 views

Java library for HTML to Java (POJO) conversion

Using Apache Velocity Api we can combine Java objects (Lists, POJOs etc.) with a (HTML) template and create the (HTML) output. Is there any Java API that can help reverse engineer this ? The input of ...
0
votes
1answer
31 views

Fastest way to do _simple_ templating with Python

After using cheetah and mako at their functional minimum (only for substitution) for sometime, I started asking myself whether just using string.Template wouldn't be the better and simpler approach ...
0
votes
0answers
57 views

JavascriptEncoding a JSP fragment

I am working on a legacy Struts 1.0 app trying to modernize (ajaxifying) parts of it. On a particular page, I have a list which needs to be refreshed every few seconds. The current solution ...
0
votes
0answers
109 views

Component ID contentform:panelMenu has already been found in the view

I have a template that looks like this: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
0
votes
1answer
112 views

What's the meaning of !“” within a variable expression in freemarker?

I have the following code from the apache ofbiz development book: <#macro displayData data> <#if data?is_sequence> <#assign keys = data?first?keys/> <#else> ...

1 2 3 4 5 7