Title |
---|
The Ultimate Guide to Black Holes |
I strongly recommend viewing the whole 56 min video.
But if you're short on time, at least watch the following clips:
# Works just like the `cd` shell alias above, with one additional | |
# feature: `cdd @remote-site` works like `ssh @remote-site`, | |
# whereas cd above will fail unless the site alias is local. If | |
# you prefer the `ssh` behavior, you can rename this shell alias | |
# to `cd`. | |
function cdd() { | |
s="$1" | |
if [ -z "$s" ] | |
then | |
builtin cd |
<div class="clearfix image-subcats"> | |
<!-- Begin image subcats --> | |
{% if settings.collection_tags %} | |
{% capture col_url%}{% if collection.url.size == 0 %}/collections/all{%else%}{{collection.url}}{%endif%}{%endcapture%} | |
{% if collection.all_tags.size > 0 %} | |
{% for tag in collection.all_tags %} | |
<div class="product span3"> | |
<div class="image"> | |
<a href="{{col_url}}/{{tag | handle}}"> | |
{% capture file_name %}{{ collection.handle }}-{{ tag | handle }}.jpg{% endcapture %} |
<div class="clearfix image-subcats"> | |
<!-- Begin image subcats --> | |
{% if settings.collection_tags %} | |
{% capture col_url%}{% if collection.url.size == 0 %}/collections/all{%else%}{{collection.url}}{%endif%}{%endcapture%} | |
{% if collection.all_tags.size > 0 %} | |
{% for tag in collection.all_tags %} | |
<div class="product span3"> | |
<div class="image"> | |
<a href="{{col_url}}/{{tag | handle}}"> | |
{% capture file_name %}{{ collection.handle }}-{{ tag | handle }}.jpg{% endcapture %} |
{% assign src = false %} | |
{% if article.content contains "<img" %} | |
{% assign src = article.content | split: 'src="' %} | |
{% assign src = src[1] | split: '"' | first | replace: '//cdn', 'http://cdn';; | replace: 'http:http://';;, 'http://';; | remove: 'https:' %} | |
{% comment %} | |
Let's assume you always add images to the blog as large. | |
{% endcomment %} |
<nav role="navigation"> | |
<ul> | |
{% for link in linklists.main-menu.links %} | |
{% assign child_list_handle = link.title | handle %} | |
{% if linklists[child_list_handle] and linklists[child_list_handle].links.size > 0 %} | |
<li class="has-dropdown"> | |
{{ link.title | link_to: link.url }} | |
<ul> | |
{% for child_link in linklists[child_list_handle].links %} | |
{% assign grand_child_list_handle = child_link.title | handle %} |
Title |
---|
The Ultimate Guide to Black Holes |
I strongly recommend viewing the whole 56 min video.
But if you're short on time, at least watch the following clips:
/* | |
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. | |
For licensing, see LICENSE.html or http://ckeditor.com/license | |
*/ | |
/* | |
WARNING: clear browser's cache after you modify this file. | |
If you don't do this, you may notice that browser is ignoring all your changes. | |
*/ | |
CKEDITOR.editorConfig = function(config) { |
/* | |
* Sample toolbars | |
*/ | |
//Toolbar definition for basic buttons | |
Drupal.settings.cke_toolbar_DrupalBasic = [ [ 'Format', 'Bold', 'Italic', '-', 'NumberedList','BulletedList', '-', 'Link', 'Unlink', 'Image','syntaxhighlight' ] ]; | |
//Toolbar definition for Advanced buttons | |
Drupal.settings.cke_toolbar_DrupalAdvanced = [ | |
['Source'], |
{% if collection %} | |
{% if collection.previous_product %} | |
{{ '« Previous Product' | link_to: collection.previous_product }} | |
{% endif %} | |
{% if collection.next_product %} | |
{% if collection.previous_product %} | {% endif %} | |
{{ 'Next Product »' | link_to: collection.next_product }} | |
{% endif %} | |
{% endif %} |