Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
piphone-front
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
La Quadrature du Net
piphone
piphone-front
Commits
ed84b17a
Commit
ed84b17a
authored
Dec 09, 2014
by
Mindiell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
First global design
parent
ad373b18
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
73 additions
and
8 deletions
+73
-8
static/css/style.css
static/css/style.css
+57
-0
static/img/header.jpg
static/img/header.jpg
+0
-0
static/img/piphone.png
static/img/piphone.png
+0
-0
templates/contactslist.html
templates/contactslist.html
+2
-0
templates/header.html
templates/header.html
+9
-5
templates/toolbar.html
templates/toolbar.html
+5
-3
No files found.
static/css/style.css
View file @
ed84b17a
...
...
@@ -42,3 +42,60 @@ background: #666666;
border-color
:
#666666
;
}
/* GLOBAL */
section
{
max-width
:
60em
;
margin
:
auto
;
padding
:
.5em
1em
;
}
/* HEADER */
#header
{
color
:
#487ED6
;
height
:
80px
;
}
#header
img
{
height
:
64px
;
float
:
left
;
}
#header
h1
{
padding-left
:
120px
;
font-weight
:
bold
;
font-size
:
2em
;
margin
:
0
;
}
#header
h2
{
padding-left
:
120px
;
font-weight
:
bold
;
font-size
:
1em
;
margin
:
0
;
}
/* LANGUAGES */
#languages
{
float
:
right
;
text-align
:
right
;
margin
:
.5em
;
}
/* TOOLBAR */
#toolbar
{
}
#toolbar
ul
{
margin
:
0
;
padding
:
0
;
}
#toolbar
li
{
display
:
inline-block
;
background-color
:
#ccc
;
padding
:
.5em
;
}
static/img/header.jpg
0 → 100644
View file @
ed84b17a
186 KB
static/img/piphone.png
0 → 100644
View file @
ed84b17a
3.45 KB
templates/contactslist.html
View file @
ed84b17a
<!-- contacts list -->
<section
id=
"contact_list"
>
<repeat
group=
"{{ @contacts }}"
value=
"{{ @contact }}"
>
<include
href=
"contact.html"
/>
</repeat>
</section>
<!-- contacts list -->
templates/header.html
View file @
ed84b17a
...
...
@@ -11,17 +11,21 @@
<link
href=
"/static/css/style.css"
rel=
"stylesheet"
>
</head>
<body>
<section>
<section
id=
"header"
>
<img
src=
"/static/img/piphone.png"
/>
<h1>
{{ _("PiPhone") }}
</h1>
<h2>
{{ _("Call Contact for free - and make yourself heard") }}
</h2>
</section>
<!--
No translation yet
<section id="languages">
<repeat group="{{ @languages }}" value="{{ @language }}">
<a
href=
"/lang/{{ @language.iso }}"
>
{{ @language.name }}
</a>
|
[<a href="/lang/{{ @language.iso }}">{{ @language.name }}</a>]
</repeat>
</section>
-->
<section>
<include
href=
"toolbar.html"
/>
</section>
<include
href=
"toolbar.html"
/>
<section>
<h3>
{{ @campaign.title }}
</h3>
...
...
templates/toolbar.html
View file @
ed84b17a
<!-- toolbar page -->
<section
id=
"toolbar"
>
<ul>
<li><a
href=
"{{ @ALIASES.home }}"
>
{{ _("Random Contact") }}
</a></li>
<li><a
href=
"{{ @ALIASES.contactslist }}"
>
{{ _("Contacts list") }}
</a></li>
<li><a
href=
"{{ @ALIASES.salespitch }}"
>
{{ _("Sales pitch") }}
</a></li>
<li><a
href=
"{{ @ALIASES.home }}"
>
{{ _("Random Contact") }}
</a></li>
<li><a
href=
"{{ @ALIASES.contactslist }}"
>
{{ _("Contacts list") }}
</a></li>
<li><a
href=
"{{ @ALIASES.salespitch }}"
>
{{ _("Sales pitch") }}
</a></li>
</ul>
</section>
<!-- toolbar page -->
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment