mirror of
https://github.com/correl/sicp.git
synced 2024-11-23 19:19:56 +00:00
22 lines
491 B
HTML
22 lines
491 B
HTML
|
---
|
||
|
layout: default
|
||
|
---
|
||
|
|
||
|
{% assign scheme_filename = page.url | replace: '.html','.scheme' | remove: '/org/' %}
|
||
|
{% assign scheme_url = scheme_filename | prepend: '/' | prepend: site.baseurl %}
|
||
|
|
||
|
<div class="post">
|
||
|
|
||
|
<header class="post-header">
|
||
|
<h1>{{ page.title }}</h1>
|
||
|
<hr />
|
||
|
Download the code for this chapter: <a class="post-link" href="{{ scheme_url }}">{{ scheme_filename }}</a>
|
||
|
<hr />
|
||
|
</header>
|
||
|
|
||
|
<article class="post-content">
|
||
|
{{ content }}
|
||
|
</article>
|
||
|
|
||
|
</div>
|