mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-15 04:22:25 +03:00
11 lines
257 B
Cheetah
11 lines
257 B
Cheetah
|
<?js
|
||
|
var data = obj;
|
||
|
data.forEach(function(example) {
|
||
|
if (example.caption) {
|
||
|
?>
|
||
|
<p class="code-caption"><?js= example.caption ?></p>
|
||
|
<?js } ?>
|
||
|
<pre class="prettyprint"><code><?js= example.code ?></code></pre>
|
||
|
<?js
|
||
|
});
|
||
|
?>
|