1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <!DOCTYPE HTML>
- <!--
- flickrlicense -- A thingy to update Flickr photo licenses
- Copyright (C) 2017 Douglas Thrift
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as published
- by the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- -->
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="HandheldFriendly" content="True">
- <meta name="MobileOptimized" content="320">
- <title>flickr license</title>
- <link rel="stylesheet" href="https://cdn.concisecss.com/v4.1/concise.min.css">
- <link rel="stylesheet" href="https://cdn.concisecss.com/concise-ui/v0.2/concise-ui.min.css">
- <link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/blitzer/jquery-ui.css">
- <link href="https://cdn.rawgit.com/cc-icons/cc-icons/1.2.1/css/cc-icons.min.css" rel="stylesheet">
- <style>
- .flickrblue {
- color: #0063dc;
- }
- .flickrpink {
- color: #ff0084;
- }
- #error iframe {
- height: 100%;
- width: 100%;
- }
- #photos {
- flex-wrap: wrap;
- height: 66vh;
- overflow-y: auto;
- }
- #photos .photo {
- flex-grow: 0;
- padding-bottom: 2rem;
- }
- /* work around the '*+* { margin-top: 1.5rem; }' rule from Concise CSS that interferes with CC Icons */
- i.cc {
- margin-top: 0px;
- }
- </style>
- </head>
- <body>
- <header container>
- <div grid="center">
- <div column><span class="flickrblue">flick</span><span class="flickrpink">r</span> license (<a href="<%= settings.agpl_src_url %>">source</a>)</div>
- <div column style="text-align: right;"><a href="<%= @user.photosurl %>"><img src="<%= @user.buddyicon %>"> <%= @user.username %></a> <% if @user.fullname && !@user.fullname.empty? %>(<%= @user.fullname %>)<% end %> | <a href="/logout">logout</a></div>
- </div>
- </header>
- <main container>
- <%= yield %>
- </main>
- </body>
- </html>
|