CS224W Course Notes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
679 B

  1. <label for="{{ include.id }}" class="margin-toggle">&#8853;</label>
  2. <input type="checkbox" id="{{ include.id }}" class="margin-toggle">
  3. <span class="marginnote">
  4. {%- assign prefix2 = include.url | slice: 0, 2 -%}
  5. {%- assign prefix7 = include.url | slice: 0, 7 -%}
  6. {%- assign prefix8 = include.url | slice: 0, 8 -%}
  7. {%- if prefix2 == '//' or prefix7 == 'http://' or prefix8 == 'https://' -%}
  8. <img class="fullwidth" src="{{ include.url }}" alt="{{ include.description }}" />
  9. {%- else -%}
  10. <img class="fullwidth" src="{{ site.baseurl }}/{{ include.url }}" alt="{{ include.description }}" />
  11. {%- endif -%}
  12. <br>
  13. {{ include.description }}
  14. </span>