Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
EleQTL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nijveen, Harm
EleQTL
Commits
97e9f960
Commit
97e9f960
authored
6 years ago
by
Nijveen, Harm
Browse files
Options
Downloads
Patches
Plain Diff
creating a landing page
parent
5d7f6098
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
main/templates/index.html
+26
-0
26 additions, 0 deletions
main/templates/index.html
static/css/main.css
+144
-0
144 additions, 0 deletions
static/css/main.css
with
170 additions
and
0 deletions
main/templates/index.html
+
26
−
0
View file @
97e9f960
...
@@ -77,6 +77,32 @@
...
@@ -77,6 +77,32 @@
{% include "download.html" %}
{% include "download.html" %}
{% elif mode == "methods" %}
{% elif mode == "methods" %}
{% include "methods.html" %}
{% include "methods.html" %}
{% elif mode == "landing" %}
<form
method=
"get"
id=
"queryform"
action=
"/EleQTL/multiplot/"
>
<textarea
rows=
3
cols=
30
id=
"queryArea"
name=
"query"
title=
"Type your query"
></textarea>
<br>
<input
type=
"submit"
id=
"multiplot_submit"
value=
"Search"
/>
</form>
<div
id=
"landing_page"
>
<div
onclick=
"location.href='/EleQTL/multiplot/';"
id=
"landing_multiplot"
>
<span>
All eQTL patterns for a single gene
</span>
</div>
<div
onclick=
"location.href='/EleQTL/correlation/';"
id=
"landing_correlation"
>
<span>
Correlating QTL profiles
</span>
</div>
<div
onclick=
"location.href='/EleQTL/coregulation/';"
id=
"landing_coregulation"
>
<span>
Shared peaks
</span>
</div>
<div
onclick=
"location.href='/EleQTL/cistrans/';"
id=
"landing_experiment"
>
<span>
Experiment overview
</span>
</div>
<div
onclick=
"location.href='/EleQTL/multiplot/';"
id=
"landing_GOterms"
>
<span>
Look for GO terms
</span>
</div>
<div
onclick=
"location.href='/EleQTL/suggestions/';"
id=
"landing_phenotypes"
>
<span>
List phenotypes
</span>
</div>
</div>
{% else %}
{% else %}
<form
method=
"get"
id=
"queryform"
<form
method=
"get"
id=
"queryform"
{%
if
mode =
=
'
correlation
'
%}
{%
if
mode =
=
'
correlation
'
%}
...
...
This diff is collapsed.
Click to expand it.
static/css/main.css
+
144
−
0
View file @
97e9f960
...
@@ -496,3 +496,147 @@ div#loading{
...
@@ -496,3 +496,147 @@ div#loading{
100
%
{
transform
:
rotate
(
360deg
);
}
100
%
{
transform
:
rotate
(
360deg
);
}
}
}
#landing_page
{
background
:
#90B9F9
;
border-radius
:
20px
;
border
:
2px
solid
#667999
;
margin
:
25px
;
padding
:
25px
;
float
:
right
;
height
:
1000
;
width
:
100%
;
text-align
:
center
;
}
#landing_multiplot
{
float
:
left
;
border-radius
:
20px
;
border
:
1px
solid
#667999
;
width
:
48%
;
height
:
33%
;
background-color
:
white
;
text-align
:
center
;
background-image
:
url("/EleQTL/static/image/multiQTL.png")
;
background-size
:
70%
;
background-position
:
50%
40%
;
background-repeat
:
no-repeat
;
margin
:
1%
1%
;
}
#landing_multiplot
:hover
{
border-radius
:
20px
;
border
:
2px
solid
#667999
;
background-color
:
#667999
;
color
:
white
;
}
#landing_correlation
{
float
:
left
;
border-radius
:
20px
;
border
:
1px
solid
#667999
;
width
:
48%
;
height
:
33%
;
background-color
:
white
;
text-align
:
center
;
background-image
:
url("/EleQTL/static/image/correlation.png")
;
background-size
:
35%
;
background-position
:
50%
40%
;
background-repeat
:
no-repeat
;
margin
:
1%
1%
;
}
#landing_correlation
:hover
{
border-radius
:
20px
;
border
:
2px
solid
#667999
;
background-color
:
#667999
;
color
:
white
;
}
#landing_coregulation
{
float
:
right
;
border-radius
:
20px
;
border
:
1px
solid
#667999
;
width
:
48%
;
height
:
33%
;
background-color
:
white
;
text-align
:
center
;
background-image
:
url("/EleQTL/static/image/coregulation.png")
;
background-size
:
70%
;
background-position
:
50%
40%
;
background-repeat
:
no-repeat
;
margin
:
1%
1%
;
}
#landing_coregulation
:hover
{
border-radius
:
20px
;
border
:
2px
solid
#667999
;
background-color
:
#667999
;
color
:
white
;
}
#landing_experiment
{
float
:
right
;
border-radius
:
20px
;
border
:
1px
solid
#667999
;
width
:
48%
;
height
:
33%
;
background-color
:
white
;
text-align
:
center
;
background-image
:
url("/EleQTL/static/image/cistrans.png")
;
background-size
:
70%
;
background-position
:
50%
40%
;
background-repeat
:
no-repeat
;
margin
:
1%
1%
;
}
#landing_experiment
:hover
{
border-radius
:
20px
;
border
:
2px
solid
#667999
;
background-color
:
#667999
;
color
:
white
;
}
#landing_GOterms
{
float
:
right
;
border-radius
:
20px
;
border
:
1px
solid
#667999
;
width
:
48%
;
height
:
33%
;
background-color
:
white
;
text-align
:
center
;
background-image
:
url("/EleQTL/static/image/cistrans.png")
;
background-size
:
70%
;
background-position
:
50%
40%
;
background-repeat
:
no-repeat
;
margin
:
1%
1%
;
}
#landing_GOterms
:hover
{
border-radius
:
20px
;
border
:
2px
solid
#667999
;
background-color
:
#667999
;
color
:
white
;
}
#landing_phenotypes
{
float
:
right
;
border-radius
:
20px
;
border
:
1px
solid
#667999
;
width
:
48%
;
height
:
33%
;
background-color
:
white
;
text-align
:
center
;
background-size
:
70%
;
background-position
:
50%
40%
;
background-repeat
:
no-repeat
;
margin
:
1%
1%
;
}
#landing_phenotypes
:hover
{
border-radius
:
20px
;
border
:
2px
solid
#667999
;
background-color
:
#667999
;
color
:
white
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment