Skip to content

Commit

Permalink
Merge pull request #156 from poacpm/feature/packages
Browse files Browse the repository at this point in the history
Feature/packages
  • Loading branch information
Ken Matsui authored Oct 5, 2018
2 parents 554abc4 + 58af2ca commit 138812e
Show file tree
Hide file tree
Showing 14 changed files with 53 additions and 14 deletions.
4 changes: 2 additions & 2 deletions assets/elm/Views/Header.elm
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ logo =
, class "header-item header-item-logo"
] [
img [ class "header-item-icon"
, src "https://poac.pm/images/poacpm-speed.png"
, src "/images/icon.svg"
, alt "icon", width 30, height 30
] [],
text "poac"
Expand Down Expand Up @@ -63,7 +63,7 @@ headerMenu =
]
],
li [] [
a [ href "https://poacpm.github.io/poac/"
a [ href "https://docs.poac.pm/"
, class "header-item"
] [
text "DOCS"
Expand Down
3 changes: 2 additions & 1 deletion assets/scss/header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
color: white;
}
.header-item-icon {
border-radius: 50%;
border-top-left-radius: 50%;
border-top-right-radius: 50%;
}

.header-list-menu li {
Expand Down
1 change: 0 additions & 1 deletion assets/scss/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
.top {
background-size: cover;
background-color: #0f071c;
//background-image: url("/images/poacpm-speed.png");
.text {
display: block;
width: 80%;
Expand Down
Binary file removed assets/static/favicon.ico
Binary file not shown.
Binary file added assets/static/images/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/static/images/favicon.ico
Binary file not shown.
Binary file removed assets/static/images/icon&logo.png
Binary file not shown.
Binary file added assets/static/images/icon-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/static/images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions assets/static/images/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/static/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions assets/static/images/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/static/images/poacpm-speed.png
Binary file not shown.
18 changes: 8 additions & 10 deletions lib/poacpm_web/templates/layout/app.html.eex
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,20 @@
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>poacpm</title>
<meta name="description" content="Modern Package Manager for C++ Developers. poacpm is the package manager that for open source. Easy to introduce to your C++ project, you can use the package intuitively.">
<meta name="description" content="Modern Package Manager for C++ Developers. poac is the package manager that for open source. Easy to introduce to your C++ project, you can use the package intuitively.">
<meta name="author" content="matken">
<meta property="og:title" content="poacpm">
<meta property="og:site_name" content="poac.pm">
<meta property="og:title" content="poac">
<meta property="og:site_name" content="poac">
<meta property="og:type" content="website">
<meta property="og:url" content="https://poac.pm">
<!-- <meta property="og:image" content="ogpのURL貼る"> -->
<meta property="og:description" content="Modern Package Manager for C++ Developers. poacpm is the package manager that for open source. Easy to introduce to your C++ project, you can use the package intuitively.">
<!-- <meta name="twitter:card" content="summary">
<meta name="twitter:site" content="サイトのURL貼る">
<meta name="twitter:image" content="ogpのURL貼る"> -->
<meta property="og:image" content="https://poac.pm/images/icon-512x512.png">
<meta property="og:description" content="Modern Package Manager for C++ Developers. poac is the package manager that for open source. Easy to introduce to your C++ project, you can use the package intuitively.">
<meta name="twitter:card" content="poac | Package manager for C/C++">
<meta name="twitter:site" content="https://poac.pm">
<meta name="twitter:image" content="https://poac.pm">

<!--
<link rel="icon" type="image/x-icon" href="<%= static_path(@conn, "/static/images/favicon.ico") %>" />
<link rel="apple-touch-icon" sizes="152x152" href="<%= static_path(@conn, "/static/images/apple-touch-icon.png") %>" />
-->

<meta name="csrf" content="<%= Plug.CSRFProtection.get_csrf_token() %>">

Expand Down

0 comments on commit 138812e

Please sign in to comment.