HTML: Multiple language meta descriptions?

Check this post from Google Webmaster Central Blog: http://googlewebmastercentral.blogspot.com.es/2010/03/working-with-multilingual-websites.html “Google tries to determine the main languages of each one of your pages. You can help to make language recognition easier if you stick to only one language per page and avoid side-by-side translations. Although Google can recognize a page as being in more than one … Read more

Meta Tag “apple-mobile-web-app-capable” for Android?

Chrome on Android now supports a meta-tag mobile-web-app-capable: Since Chrome M31, you can set up your web app to have an application shortcut icon added to a device’s homescreen, and have the app launch in full-screen “app mode” using Chrome for Android’s “Add to homescreen” menu item. For details about the mobile-web-app-capable meta-tag, scroll down … Read more

Is there a standardized (meta?) tag for the date of a website?

There have been a few WHATWG Meta Extension proposals, referenced in the HTML5 specification which could cater for the creation date of a page. “Accepted” Proposals dcterms.available – The date the resource became available. dcterms.created – The creation date of the resource. dcterms.dateAccepted – The date the resource was accepted. dcterms.submitted – The date the … Read more

How can I update meta tags in AngularJS?

<html ng-app=”app”> <title ng-bind=”metaservice.metaTitle()”>Test</title> <meta name=”description” content=”{{ metaservice.metaDescription() }}” /> <meta name=”keywords” content=”{{ metaservice.metaKeywords() }}” /> <script> var app = angular.module(‘app’,[]); app.service(‘MetaService’, function() { var title=”Web App”; var metaDescription = ”; var metaKeywords=””; return { set: function(newTitle, newMetaDescription, newKeywords) { metaKeywords = newKeywords; metaDescription = newMetaDescription; title = newTitle; }, metaTitle: function(){ return title; }, … Read more