KODAK EKTACHROME E100 4X5 10 SHEETS
KOD113632
950,00 DKK
OutOfStock

-
København (Click & Collect) Ikke på lager
-
Århus (Click & Collect) Ikke på lager
-
Onlinelager (1-2 dages lev.) På lager


Beskrivelse
KODAK PROFESSIONAL Ektarchrome E100 4x5in 10 Sheets
Chrome. Bold Color. Vivid Detail.
Now available in 35mm, 120 and 4x5 Sheets. From studio to location, fashion to landscapes.
KODAK PROFESSIONAL EKTACHROME Film E100 delivers outstanding image quality and performance:
- Virtually grainless scans and enlargements
- Clean, bright whites
- Moderately enhanced color
- Neutral tone scale
- Outstanding skin tone reproduction
Error parsing template "Designs/Swift/Paragraph/Swift_ProductSpecification_Custom.cshtml" Line 58: (57:0) - Encountered end tag "style" with no matching start tag. Are your start/end tags properly balanced?
1 @inherits Dynamicweb.Rendering.ViewModelTemplate<Dynamicweb.Frontend.ParagraphViewModel> 2 @using Dynamicweb.Ecommerce.ProductCatalog 3 @using NLWI.Core.Factory 4 @using NORRIQ.CustomCode.Razor 5 @using System.Web 6 7 @* CUSTOMIZED STANDARD SWIFT (v1.15.0) TEMPLATE *@ 8 9 @{ 10 bool isVisualEditor = !string.IsNullOrEmpty(Dynamicweb.Context.Current.Request.QueryString.Get("VisualEdit")) ? Convert.ToBoolean(Dynamicweb.Context.Current.Request.QueryString.Get("VisualEdit")) : false; 11 12 ProductViewModel product = new ProductViewModel(); 13 14 ProductViewModelSettings productSetting = new ProductViewModelSettings 15 { 16 LanguageId = Dynamicweb.Ecommerce.Common.Context.LanguageID, 17 CurrencyCode = Dynamicweb.Ecommerce.Common.Context.Currency.Code, 18 CountryCode = Dynamicweb.Ecommerce.Common.Context.Country.Code2, 19 ShopId = Pageview.Area.EcomShopId 20 }; 21 22 if (Dynamicweb.Context.Current.Items.Contains("ProductDetails")) 23 { 24 product = (ProductViewModel)Dynamicweb.Context.Current.Items["ProductDetails"]; 25 } 26 else if (Pageview.Item["DummyProduct"] != null) 27 { 28 29 string dummyProductId = ""; 30 var pageViewModel = Dynamicweb.Frontend.ContentViewModelFactory.CreatePageInfoViewModel(Pageview.Page); 31 ProductListViewModel productList = pageViewModel.Item.GetValue("DummyProduct") != null ? pageViewModel.Item.GetValue("DummyProduct") as ProductListViewModel : new ProductListViewModel(); 32 if (productList.Products != null) 33 { 34 foreach (var p in productList.Products) { dummyProductId = p.Id; } 35 ProductViewModel dummyProduct = dummyProductId != "" ? ViewModelFactory.CreateView(productSetting, dummyProductId) : new ProductViewModel(); 36 product = dummyProduct; 37 } 38 else 39 { 40 product = ViewModelFactory.CreateView(productSetting, Dynamicweb.Ecommerce.Services.Products.GetAllProducts(Dynamicweb.Ecommerce.Common.Context.LanguageID, false).FirstOrDefault().Id); 41 } 42 } 43 else if (Pageview.Item["DummyProduct"] == null) 44 { 45 product = ViewModelFactory.CreateView(productSetting, Dynamicweb.Ecommerce.Services.Products.GetAllProducts(Dynamicweb.Ecommerce.Common.Context.LanguageID, false).FirstOrDefault().Id); 46 } 47 48 var specs = product.GetSpecifications(); 49 } 50 51 52 @if (specs.GetByGroup("Specifikationer").Any()) 53 { 54 var prodSpecs = specs.GetByGroup("Specifikationer"); 55 bool hideTitle = Model.Item.GetBoolean("HideTitle"); 56 string titleFontSize = Model.Item.GetRawValueString("TitleFontSize", "display-4"); 57 58 </style> 59 <div> 60 @if (!hideTitle) 61 { 62 <div class="text-start pb-2 pb-lg-4"> 63 <h2 class="@titleFontSize">@Model.Item.GetString("Title")</h2> 64 </div> 65 } 66 <div class="tab-pane" role="tabpanel" id="specs"> 67 <table class="table table-specs table-striped"> 68 <tbody> 69 @foreach (var specKey in prodSpecs.GetAvailableKeys()) 70 { 71 var spec = prodSpecs.GetByKey(specKey, ","); 72 <tr> 73 <td class="table-specs-label fw-bold"> 74 @(spec.Caption) 75 </td> 76 <td class="table-specs-value"> 77 @spec.Value @spec.Unit 78 </td> 79 </tr> 80 } 81 </tbody> 82 </table> 83 </div> 84 </div> 85 }