Skip to content

Latest commit

 

History

History
170 lines (160 loc) · 6.84 KB

File metadata and controls

170 lines (160 loc) · 6.84 KB
layout front
title What is Nuclear? – Learn about nuclear power
description Learn all about nuclear power directly from nuclear engineers, from the basics to detailed deep dives into types of reactors, nuclear history, economics, and nuclear waste
image /img/dc_cook.jpg
author nick
byline false
last_modified_at 2024-02-25

        An icon of
        a nuclear reactor with an atom symbol on a cooling tower and a lightning bolt on the
        reactor.

What is Nuclear?

Learn about nuclear power

Essentials

Start here to learn more about nuclear power's capabilities and limitations. You'll learn about different types of nuclear reactors, reprocessing, thorium, fission vs. fusion, and nuclear waste.

Start with the Essentials

Deep Dives

Get nuanced by reading about nuclear power economics, thorium, the Rickover memo, and beyond

Dive deeper

History

Learn about the amazing things done in the first nuclear era, and how they can help us proceed today.

Take me back

Reference

We also feature large amounts of useful reference information and calculators.

Bask in info

Consulting

Hire us for nuclear consulting work. We can help execute your reactor strategy, perform expert technical reviews, do due diligence, and more.

Hire us
<div class="col-12">
  <h2>Latest Updates</h2>

  <div id="newsCarousel" class="carousel slide">
    <div class="carousel-inner">
      {%- assign news = site.posts | sort: 'date' | reverse -%}
      {%- for post in news limit: 6 -%}
        {%- assign mod = forloop.index | modulo: 3 -%}
        {%- if mod == 1 -%}
          {% if forloop.index == 1 -%}
            <div class="carousel-item active">
          {%- else -%}
            <div class="carousel-item">
          {%- endif -%}
          <div class="row">
        {%- endif -%}
        <div class="col-md-4 col-sm-12 ">
            <div class="card h-100">
              <a href="{{ post.url}}" class="stretched-link"></a>
              <img src="{{ post.image }}" class="card-img-top" alt="Header image for story">
              <div class="card-body">
                <p class="fs-5 card-title">{{ post.title }}</p>
                <p class="card-text">{{ post.description | truncatewords: 25 }}</p>
                <button class="border-0">
                  <img class="m-1" width="16" height="16" alt="Reactor icon" src="img/reactor_web.svg">Read more
                </button>
              </div>
              <div class="card-footer">
                <small class="text-body-secondary">Posted on: {{ post.date | date: '%Y-%m-%d' }}</small>
              </div>
            </div>
        </div>
        {%- if mod == 0 or forloop.last -%}
          </div>

          </div>
        {%- endif -%}
      {%- endfor -%}
    </div>
    <!-- end carousel-inner -->
    <button class="carousel-control-prev" type="button" data-bs-target="#newsCarousel" data-bs-slide="prev">
      <span class="carousel-control-prev-icon" aria-hidden="true"></span>
      <span class="visually-hidden">Previous</span>
    </button>
    <button class="carousel-control-next" type="button" data-bs-target="#newsCarousel" data-bs-slide="next">
      <span class="carousel-control-next-icon" aria-hidden="true"></span>
      <span class="visually-hidden">Next</span>
    </button>
  </div>
</div>

<a href="{% link news.md %}" class="btn btn-success m-1" role="button"
  ><i class="far fa-newspaper"></i> See all news</a
>

{% include page_nav.html %} {% include footer.html %}