Skip to content

Commit

Permalink
update website (WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Dec 13, 2020
1 parent 6efbc31 commit 8e844aa
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 11 deletions.
2 changes: 1 addition & 1 deletion docs/_includes/base_head.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
rel="stylesheet"
media="print"
onload="this.media='all'"/>
<link href="/css/style.css" rel="stylesheet"/>
<link href="/css/style_2.css" rel="stylesheet"/>
<link href="https://cdn.jsdelivr.net/combine/npm/jquery.terminal/css/jquery.terminal.min.css,npm/terminal-prism/css/prism-coy.css"
rel="stylesheet"/>

Expand Down
3 changes: 2 additions & 1 deletion docs/_includes/logo.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<div class="logo">
<a href="/" title="LIPS: home page">
<img src="/img/lips-scheme-logo.svg" alt="vector logo of lambda and text LISP inside parenthesis" />
<img src="/img/lips-scheme-logo-white.svg"
alt="vector logo of lambda character and text LIPS inside parentheses" />
</a>
</div>
27 changes: 18 additions & 9 deletions docs/_layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,25 @@

</head>
<body>
<!-- cx -->
<main>
<header>
{% include logo.html %}
{% if page.layout == 'post' %}
<p>{{ site.title }}</p>
{% else %}
<h1>{{ site.title }}</h1>
{% endif %}
{% include nav.html %}
</header>
<section id="head">
<header>
{% include logo.html %}
{% if page.layout == 'post' %}
<p>{{ site.title }}</p>
{% else %}
<h1>{{ site.title }}</h1>
{% endif %}
</header>
<div class="top-bar">
{% include nav.html %}
<ul class="icons">
<li class="twitter"><a href="https://twitter.com/lips_lang">Twitter</a></li>
<li class="github"><a href="https://github.com/jcubic/lips">GitHb</a></li>
</ul>
</div>
</section>
<section id="content">
{{ content }}
</section>
Expand Down
5 changes: 5 additions & 0 deletions docs/index.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,8 @@ I suggest to install 1.0 beta version, standard version is pretty outdated.
```javascript
var x = 10;
```

```python
if __name__ == '__main__':
print "hello"
```

0 comments on commit 8e844aa

Please sign in to comment.