Improved company pages
This commit is contained in:
parent
c53ab95e1e
commit
85c185f0ae
@ -60,9 +60,7 @@
|
|||||||
margin-top typography-margin
|
margin-top typography-margin
|
||||||
|
|
||||||
.character-sidebar
|
.character-sidebar
|
||||||
margin-left content-padding
|
sidebar
|
||||||
margin-top 0
|
|
||||||
min-width 270px
|
|
||||||
|
|
||||||
> 1400px
|
> 1400px
|
||||||
.character-sidebar
|
.character-sidebar
|
||||||
|
@ -1,22 +1,31 @@
|
|||||||
component CompanyPage(company *arn.Company, user *arn.User)
|
component CompanyPage(company *arn.Company, user *arn.User)
|
||||||
CompanyTabs(company, user)
|
CompanyTabs(company, user)
|
||||||
|
|
||||||
h1= company.Name.English
|
.company-page
|
||||||
|
.company-header
|
||||||
|
h1.company-name= company.Name.English
|
||||||
|
|
||||||
.company-description
|
.company-description
|
||||||
div!= markdown.Render(company.Description)
|
div!= markdown.Render(company.Description)
|
||||||
ul
|
|
||||||
each link in company.Links
|
|
||||||
li
|
|
||||||
a(href=link.URL, target="_blank", rel="noopener")= link.Title
|
|
||||||
|
|
||||||
if company.Location.Latitude != 0 && company.Location.Longitude != 0
|
h3 Anime
|
||||||
iframe.company-location.lazy(data-src="https://www.google.com/maps/embed/v1/place?q=" + toString(company.Location.Latitude) + "," + toString(company.Location.Longitude) + "&key=AIzaSyAsx6fhqRGaMLTixIJMIZBU4Mg6HJmvQf0")
|
|
||||||
|
|
||||||
.company-anime
|
.company-anime
|
||||||
each anime in company.Anime()
|
each anime in company.Anime()
|
||||||
a.company-anime-item.ajax(href=anime.Link(), title=anime.Title.ByUser(user))
|
a.company-anime-item.ajax(href=anime.Link(), title=anime.Title.ByUser(user))
|
||||||
img.company-anime-item-image.lazy(data-src=anime.Image("small"), data-webp="true", alt=anime.Title.ByUser(user))
|
img.company-anime-item-image.lazy(data-src=anime.Image("small"), data-webp="true", alt=anime.Title.ByUser(user))
|
||||||
|
|
||||||
|
.company-sidebar
|
||||||
|
if company.Location.Latitude != 0 && company.Location.Longitude != 0
|
||||||
|
h3 Location
|
||||||
|
iframe.company-location.lazy(data-src="https://www.google.com/maps/embed/v1/place?q=" + toString(company.Location.Latitude) + "," + toString(company.Location.Longitude) + "&key=AIzaSyAsx6fhqRGaMLTixIJMIZBU4Mg6HJmvQf0")
|
||||||
|
|
||||||
|
if len(company.Links) > 0
|
||||||
|
h3 Links
|
||||||
|
ul
|
||||||
|
each link in company.Links
|
||||||
|
li
|
||||||
|
a(href=link.URL, target="_blank", rel="noopener")= link.Title
|
||||||
|
|
||||||
component CompanyTabs(company *arn.Company, user *arn.User)
|
component CompanyTabs(company *arn.Company, user *arn.User)
|
||||||
.tabs
|
.tabs
|
||||||
|
@ -1,6 +1,23 @@
|
|||||||
|
.company-page
|
||||||
|
vertical
|
||||||
|
|
||||||
|
.company-header
|
||||||
|
vertical
|
||||||
|
|
||||||
|
> 1250px
|
||||||
|
.company-page
|
||||||
|
horizontal
|
||||||
|
|
||||||
|
.company-sidebar
|
||||||
|
sidebar
|
||||||
|
|
||||||
|
> 1400px
|
||||||
|
.company-sidebar
|
||||||
|
min-width 300px
|
||||||
|
|
||||||
|
.company-name,
|
||||||
.company-description
|
.company-description
|
||||||
max-width 700px
|
text-align left
|
||||||
margin 0 auto
|
|
||||||
|
|
||||||
.company-location
|
.company-location
|
||||||
width 100%
|
width 100%
|
||||||
|
@ -64,6 +64,11 @@ mixin anime-mini-item-image
|
|||||||
:hover
|
:hover
|
||||||
filter saturate(1.3)
|
filter saturate(1.3)
|
||||||
|
|
||||||
|
mixin sidebar
|
||||||
|
margin-left content-padding
|
||||||
|
margin-top 0
|
||||||
|
min-width 270px
|
||||||
|
|
||||||
mixin bg-dark-up
|
mixin bg-dark-up
|
||||||
background-color transparent
|
background-color transparent
|
||||||
:hover
|
:hover
|
||||||
|
Loading…
Reference in New Issue
Block a user