Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixos-homepage
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 089bd1a557a4
Choose a base ref
...
head repository: NixOS/nixos-homepage
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1e3957a8bf3e
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Aug 16, 2018

  1. Fixes emoji titles by uppercasing only letters.

    Template Toolkit doesn't really care about UTF-8, but this ISN'T
    template toolit's fault. This was `ucfirst` that was munging the
    initial emoji.
    samueldr committed Aug 16, 2018
    Copy the full SHA
    04aa358 View commit details
  2. Merge pull request #232 from samueldr/fix/emojititles

    Fixes emoji titles by uppercasing only letters.
    edolstra authored Aug 16, 2018
    Copy the full SHA
    1e3957a View commit details
Showing with 7 additions and 3 deletions.
  1. +7 −3 index.tt
10 changes: 7 additions & 3 deletions index.tt
Original file line number Diff line number Diff line change
@@ -76,11 +76,15 @@
[% FOREACH b IN JSON.Escape.json_decode(IO.All.new('blogs.json').all).channel.item.first(5); IF b; %]
<li>
<div class="nixos-blog">
[% author = b.title.split(':').0.trim;
title = b.title.remove('^[^:]*:').trim
[%
USE title = String(HTML.escape(b.title.remove('^[^:]*:').trim));
title = title.replace('^[a-z]', title.copy.truncate(1).upper)
author = b.title.split(':').0.trim;
%]
[%
%]
<div class="nixos-blog-title">
<a [% HTML.attributes(href => b.link) %]>[% HTML.escape(title.ucfirst) %]</a>
<a [% HTML.attributes(href => b.link) %]>[% title %]</a>
</div>
<div class="nixos-blog-author-info">
<span class="nixos-blog-author">[% HTML.escape(author) %]</span>