Skip to content

Commit

Permalink
Merge pull request #3 from ubyssey/peter/style-updates
Browse files Browse the repository at this point in the history
Peter/style updates
  • Loading branch information
psiemens authored Oct 1, 2018
2 parents 250da6c + 33cf689 commit c69eb7f
Show file tree
Hide file tree
Showing 77 changed files with 1,015 additions and 498 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ __pycache__/
*$py.class
env/

.DS_Store

# Static file folders
/media/
/static/
Expand Down
Binary file removed phoenix/static/src/fonts/notosans-bold.eot
Binary file not shown.
Binary file removed phoenix/static/src/fonts/notosans-bold.ttf
Binary file not shown.
Binary file removed phoenix/static/src/fonts/notosans-bold.woff
Binary file not shown.
Binary file removed phoenix/static/src/fonts/notosans-bolditalic.eot
Binary file not shown.
Binary file removed phoenix/static/src/fonts/notosans-bolditalic.ttf
Binary file not shown.
Binary file removed phoenix/static/src/fonts/notosans-bolditalic.woff
Binary file not shown.
Binary file removed phoenix/static/src/fonts/notosans-italic.eot
Binary file not shown.
Binary file removed phoenix/static/src/fonts/notosans-italic.ttf
Binary file not shown.
Binary file removed phoenix/static/src/fonts/notosans-italic.woff
Binary file not shown.
Binary file removed phoenix/static/src/fonts/notosans-regular.eot
Binary file not shown.
Binary file removed phoenix/static/src/fonts/notosans-regular.ttf
Binary file not shown.
Binary file removed phoenix/static/src/fonts/notosans-regular.woff
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added phoenix/static/src/fonts/phx-kievit-bold.ttf
Binary file not shown.
Binary file added phoenix/static/src/fonts/phx-kievit-bold.woff
Binary file not shown.
Binary file added phoenix/static/src/fonts/phx-kievit-bold.woff2
Binary file not shown.
Binary file added phoenix/static/src/fonts/phx-kievit-italic.ttf
Binary file not shown.
Binary file added phoenix/static/src/fonts/phx-kievit-italic.woff
Binary file not shown.
Binary file not shown.
Binary file added phoenix/static/src/fonts/phx-kievit-regular.ttf
Binary file not shown.
Binary file added phoenix/static/src/fonts/phx-kievit-regular.woff
Binary file not shown.
Binary file added phoenix/static/src/fonts/phx-kievit-regular.woff2
Binary file not shown.
14 changes: 11 additions & 3 deletions phoenix/static/src/js/components/Galleries.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,16 @@ import React from 'react';
import Gallery from './Gallery';

export default function Galleries(props) {
const galleries = props.galleries.map(function(gallery, i){
return (<Gallery key={i} title={gallery.title} selector={gallery.selector} images={gallery.list} imagesTable={gallery.table} />);
const galleries = props.galleries.map((gallery, i) => {
return (
<Gallery
key={i}
title={gallery.title}
selector={gallery.selector}
images={gallery.list}
imagesTable={gallery.table} />
);
});
return (<div>{galleries}</div>);

return <div>{galleries}</div>
}
Loading

0 comments on commit c69eb7f

Please sign in to comment.