Created
April 13, 2011 15:18
-
-
Save Znow/917727 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class PagesController < ApplicationController | |
def index | |
@page_title = "Advice Capital A/S - Index" | |
end | |
def contact | |
@page_title = "Advice Capital A/S - Contact" | |
end | |
# About Advice Capital | |
def about_ac | |
@page_title = "Om Advice Capital" | |
end | |
def history | |
@page_title = "Historie" | |
end | |
def concept | |
@page_title = "Det står vi for / Vores koncept" | |
end | |
def results | |
@page_title = "Resultater" | |
end | |
def strategy | |
@page_title = "Strategi" | |
end | |
# About Advice Invest | |
def about_ai | |
@page_title = "Om Advice Invest" | |
end | |
# Organisation | |
def organisation | |
@page_title = "Organisation" | |
end | |
def employees | |
@page_title = "Medarbejdere" | |
end | |
def staff | |
@page_title = "Bestyrelse" | |
end | |
# Become Client/Customer? | |
def become_customer | |
@page_title = "Bliv kunde" | |
end | |
def invest_advice | |
@page_title = "Investering i Advice Invest A/S" | |
end | |
def individual_invest_advice | |
@page_title = "Individuel investeringsrådgivning" | |
end | |
# Invest Universe | |
def invest_universe | |
@page_title = "Investeringsunivers" | |
end | |
def stocks | |
@page_title = "Aktier" | |
end | |
def company_bonds | |
@page_title = "Virksomhedsobligationer" | |
end | |
def bonds | |
@page_title = "Obligationer" | |
end | |
def valuta | |
@page_title = "Valuta" | |
end | |
# News | |
def news | |
@page_title = "Nyheder" | |
end | |
# Investor Login | |
def investor_login | |
@page_title = "Investor login" | |
end | |
def rapport | |
@page_title = "Modtag Advice Invest kvartalsrapport" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment