MadeMyDay Posted September 24, 2014 Share Posted September 24, 2014 Stroke upon stroke... Another one online: http://aureliusinvest.com/en/ (english) and http://aureliusinvest.de (german) German Investment Company. Porting old website from MODX to PW (by hand mostly), added some more emotional imagery and a bit more what they actually do and how they work. Nothing special to say about the used modules, it is mainly content and images which has to be managed by PW. 9 Link to comment Share on other sites More sharing options...
pwired Posted September 24, 2014 Share Posted September 24, 2014 WoW, what can I say, pw production band ? Great design/pics as ever. 1 Link to comment Share on other sites More sharing options...
MadeMyDay Posted September 24, 2014 Author Share Posted September 24, 2014 WoW, what can I say, pw production band ? Well, a lot in parallel atm. Until the end of the year there will be some more Great design/pics as ever. Thank you Link to comment Share on other sites More sharing options...
Joss Posted September 24, 2014 Share Posted September 24, 2014 Like it! Nice photographic work, too. Link to comment Share on other sites More sharing options...
yellowled Posted September 24, 2014 Share Posted September 24, 2014 I already said I liked it on Twitter. Teeny-tiny thing about the icons (I'm glad I'm not the last person on earth who uses icon fonts, BTW) – you could make the icon font icons a wee bit nicer for screen readers if you replace i.e. <i class="icon-search"></i> with <span class="icon-search" aria-hidden="true"></span> The i element is “text in an alternate voice” in HTML5, I'm not sure if screen readers react on that. The aria-hidden makes screen readers not read out the glyph used for the icon. However, if you use aria-hidden, you should also add a fallback text for screen readers to actually read … <span class="icon-search" aria-hidden="true"></span><span class="screen-reader-text">Search</span> … and hide that for visual browsers. While I'm poking at the search, why not use type="search" for the input? Also, the search input is missing a label (again, just for screen readers, and it should probably be hidden for visual browsers as well.) 1 Link to comment Share on other sites More sharing options...
bernhard Posted September 25, 2014 Share Posted September 25, 2014 very nice as always! please correct me if i'm wrong, but i think it's not the best for SEO to have 2 domains showing exactly the same website (.com without /en = .de). maybe you could add a canonical link? any opinions of the experts here? Link to comment Share on other sites More sharing options...
MadeMyDay Posted September 26, 2014 Author Share Posted September 26, 2014 please correct me if i'm wrong, but i think it's not the best for SEO to have 2 domains showing exactly the same website (.com without /en = .de). maybe you could add a canonical link? You are right. But instead relying on a canonical I just used a PW solution: if($config->httpHost == "aureliusinvest.com"){ $english = $languages->get("en"); if($page->viewable($english) && $page->url != $page->localUrl($english)){ $session->redirect($page->localUrl($english)); } } Basically: If user accesses the site with the .com domain I check if there is an english version of that site and redirect to that one. Only if the current page isn't already the right one. Since session redirects are 301 by default, Google should index correctly. 3 Link to comment Share on other sites More sharing options...
Ole Posted September 26, 2014 Share Posted September 26, 2014 Great Work.Nice design. Clean, simple, but not boring at all.Even it's when "just" content, I think the handling with all the data isn't done in a few minutes. 1 Link to comment Share on other sites More sharing options...
totoff Posted September 26, 2014 Share Posted September 26, 2014 Very nice, bookmarked as best-practice example. Did you do the whole thing, design, coding, ia etc.? Or is this the work of a team? 1 Link to comment Share on other sites More sharing options...
MadeMyDay Posted September 26, 2014 Author Share Posted September 26, 2014 Did you do the whole thing, design, coding, ia etc.? Or is this the work of a team? No, just me. Link to comment Share on other sites More sharing options...
totoff Posted September 26, 2014 Share Posted September 26, 2014 No, just me. Awesome for a single person. Very good. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now