summaryrefslogtreecommitdiff
path: root/index.html
blob: 4120dca9b08b35b8b679f085e8e2eba42cb69e95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
---
layout: default
pagination:
  enabled: true
---

<div id="main" role="main" class="index">
  <div class="posts">
    {% assign sorted_featured = site.featured | sort: 'date' | reverse %}
    {% for post in sorted_featured %}
    <article class="post">
      <header>
        <span title="format: yyyy-mm-dd">{{ post.date | date: "%Y-%m-%d" }} @ journal.lunar.sh</span>
        <div>
          <a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
        </div>
        <div class="excerpt">{{ post.excerpt }}</div>
      </header>
    </article>
    {% endfor %}
    <h1 id="pubs" class="title">Other Publications</h1>
    {% for post in paginator.posts %}
    <article class="post">
      <header>
        <span title="format: yyyy-mm-dd">{{ post.date | date: "%Y-%m-%d" }} @ journal.lunar.sh</span>
        <div>
          <a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
        </div>
        <div class="excerpt">{{ post.excerpt }}</div>
      </header>
    </article>
    {% endfor %}
    <div class="pagination">
      <span class="page_number ">
        Page: <code class="language-plaintext highlighter-rouge">{{ paginator.page }}</code> of <code class="language-plaintext highlighter-rouge">{{ paginator.total_pages }}</code>
      </span>
      {% if paginator.previous_page %}
      <a href="{{ paginator.previous_page_path }}#pubs" class="previous">
        Previous
      </a>
      {% endif %}
      {% if paginator.next_page %}
      <a href="{{ paginator.next_page_path }}#pubs" class="next">Next</a>
      {% endif %}
    </div>
    <hr>
  </div>
  <h1 class="title">Featured Publications</h1>
  <div class="aside-container">
    <div class="avatar">
      <a href="https://www.nasa.gov/mission/apollo-11/">
        <img alt="Lunar Journal Logo" src="{{ site.avatar }}">
      </a>
    </div>
    <div class="info">
      <table>
        <tbody>
          <tr>
            <th>email:</th>
            <td><a href="mailto:root@lunar.sh">root@lunar.sh</a></td>
          </tr>
          <tr>
            <th>github:</th>
            <td><a href="https://github.com/lunar-rf">lunar-rf</a></td>
          </tr>
          <tr>
            <th>linktr.ee:</th>
            <td><a href="https://linktr.ee/lunar.sh">lunar.sh</a></td>
          </tr>
          <tr>
            <th>atom:</th>
            <td><a href="https://journal.lunar.sh/feed.xml">feed.xml</a></td>
          </tr>
        </tbody>
      </table>
    </div>
    <div class="summary">
      {{ site.description | markdownify }}
    </div>
  </div>
  <h1 class="title">Lunar Journal</h1>
</div>
<div class="footer-container">
  <div class="footer-content">
    <p class="muted">
      Questions, comments? Please send a plain-text email to <a href="mailto:root@lunar.sh">root@lunar.sh</a>
      with a descriptive subject line and we will try get back to you!
    </p>
    <div>Copyright © 2022-2024</div>
    <div class="revision">
      <a href="{{ site.github.repository_url }}/tree/{{ site.github.build_revision }}">
        {{ site.github.build_revision | truncate: 8, "" }}
      </a>
    </div>
    <div>
      <a href="https://journal.lunar.sh/info.html">
        <img class="greyscale" title="About Us" src="https://journal.lunar.sh/images/megafon.gif">
      </a>
    </div>
    <div class="footer-love">
      <strong>Developed</strong> with <i class="fas fa-heart"></i>
      by <a href="https://labs.lunar.sh"><strong>Lunar RF Labs</strong></a>
    </div>
  </div>
</div>