This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript">var ChannelImages=ChannelImages?ChannelImages:new Object();ChannelImages.Fields=ChannelImages.Fields?ChannelImages.Fields:new Object();ChannelImages.Fields.Field_85={"key":1350501036,"field_name":"field_id_85","field_label":"Images","settings":{"no_sizes":"no","keep_original":"yes","upload_location":"s3","show_stored_images":"no","stored_images_by_author":"no","stored_images_search_type":"entry","show_import_files":"no","jeditable_event":"click","image_limit":"100","hybrid_upload":"yes","progressive_jpeg":"no","wysiwyg_original":"yes","save_data_in_field":"yes","show_image_edit":"no","allow_per_image_action":"no","locked_url_fieldtype":"no","disable_cover":"no","action_groups":{"1":{"group_name":"small_square","wysiwyg":"yes","actions":{"resize_adaptive":{"width":"160","height":"160","quality":"100","upsizing":"no"}},"final_size":{"width":"160","height":"160","quality":"100","upsizing":"no"},"editable":"no"},"2":{"group_name":"small","wysiwyg":"yes","actions":{"resize":{"width": |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript">var ChannelImages=ChannelImages?ChannelImages:new Object();ChannelImages.Fields=ChannelImages.Fields?ChannelImages.Fields:new Object();ChannelImages.Fields.Field_85={"key":1350503412,"field_name":"member_images","field_label":"Images","settings":{"no_sizes":"no","keep_original":"yes","upload_location":"s3","show_stored_images":"no","stored_images_by_author":"no","stored_images_search_type":"entry","show_import_files":"no","jeditable_event":"click","image_limit":"100","hybrid_upload":"yes","progressive_jpeg":"no","wysiwyg_original":"yes","save_data_in_field":"yes","show_image_edit":"no","allow_per_image_action":"no","locked_url_fieldtype":"no","disable_cover":"no","action_groups":{"1":{"group_name":"small_square","wysiwyg":"yes","actions":{"resize_adaptive":{"width":"160","height":"160","quality":"100","upsizing":"no"}},"final_size":{"width":"160","height":"160","quality":"100","upsizing":"no"},"editable":"no"},"2":{"group_name":"small","wysiwyg":"yes","actions":{"resize":{"width |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this is code |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
return array( | |
'devMode' => false, | |
'environmentVariables' => array( | |
'siteUrl' => 'http://economicexperts.eu/' | |
), | |
'.dev' => array( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% set half = ceil(entry.kickstarter|length/2) %} | |
{% set leftHalf = entry.kickstarter|slice(0,half) %} | |
{% set rightHalf = entry.kickstarter|slice(half) %} | |
<div class="row"> | |
<div class="col-sm-6"> | |
{% for block in leftHalf %} | |
<div class="row"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# | |
normal craft structure menu | |
------------- | |
works well in enough most of the time but limited in that it combines the content sturctures with the menu structures into a single section, making more complex navigations more complicated. | |
#} | |
{% set pages = craft.entries.section('pages') %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% set workshops = craft.entries.section('workshops').find() %} | |
{% spaceless %} | |
{{ workshops|json_encode }} | |
{% endspaceless %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form method="post" action="" accept-charset="UTF-8"> | |
<input type="hidden" name="action" value="entries/saveEntry"> | |
<input type="hidden" name="redirect" value="account/jobs?added={id}"> | |
<input type="hidden" name="sectionId" value="9"> | |
<input type="hidden" name="enabled" value="0"> | |
<div class="form-group"> | |
<label for="title">Job Title</label> | |
<input id="title" type="text" class="form-control" name="title"> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if craft.request.isAjax %} | |
{% set layout = "_ajaxLayout" %} | |
{% else %} | |
{% set layout = "_layout" %} | |
{% endif %} | |
{% extends layout %} | |
{% set limit = 10 %} | |
{% set params = { section: 'news', limit: limit} %} |
OlderNewer